From fff25cbaa721741550699efd24b3b885d654ee56 Mon Sep 17 00:00:00 2001 From: Giles Knap Date: Mon, 13 Oct 2025 13:01:00 +0100 Subject: [PATCH] ioc_group --> domain --- Charts/dev-c7/templates/statefulset.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Charts/dev-c7/templates/statefulset.yaml b/Charts/dev-c7/templates/statefulset.yaml index 8b7f551..1c4f214 100644 --- a/Charts/dev-c7/templates/statefulset.yaml +++ b/Charts/dev-c7/templates/statefulset.yaml @@ -5,7 +5,7 @@ This keeps the length of the values.txt file for each individual IOC to a minimum */ -}} {{- $location := default .Values.global.location .Values.location | required "ERROR - You must supply location or global.location" -}} -{{- $ioc_group := default .Values.global.ioc_group .Values.ioc_group | required "ERROR - You must supply ioc_group or global.ioc_group" -}} +{{- $domain := default .Values.global.domain .Values.domain | required "ERROR - You must supply domain or global.domain" -}} {{- $image := .Values.image | required "ERROR - You must supply image." -}} {{- $enabled := eq .Values.global.enabled false | ternary false true -}} @@ -17,7 +17,7 @@ metadata: labels: app: {{ .Release.Name }} location: {{ $location }} - ioc_group: {{ $ioc_group }} + domain: {{ $domain }} enabled: {{ $enabled | quote }} is_ioc: "true" spec: @@ -34,7 +34,7 @@ spec: labels: app: {{ .Release.Name }} location: {{ $location }} - ioc_group: {{ $ioc_group }} + domain: {{ $domain }} is_ioc: "true" spec: hostNetwork: {{ .Values.hostNetwork }}