From 15db5dcbba33c39f752499f2d73c77cac32d1e8c Mon Sep 17 00:00:00 2001 From: Johannes Bornhold Date: Wed, 13 Sep 2023 15:20:14 +0200 Subject: [PATCH] fix(univention-management-stack): Use the value "global.imagePullPolicy" --- .../univention-management-stack/values-ldap-server.gotmpl | 2 +- .../values-notifications-api.gotmpl | 2 +- .../univention-management-stack/values-portal-frontend.gotmpl | 2 +- .../univention-management-stack/values-portal-listener.gotmpl | 2 +- .../univention-management-stack/values-portal-server.gotmpl | 2 +- .../univention-management-stack/values-stack-data-swp.gotmpl | 2 +- .../univention-management-stack/values-stack-data-ums.gotmpl | 2 +- .../apps/univention-management-stack/values-store-dav.gotmpl | 4 ++-- .../univention-management-stack/values-udm-rest-api.gotmpl | 2 +- .../univention-management-stack/values-umc-gateway.gotmpl | 2 +- .../apps/univention-management-stack/values-umc-server.gotmpl | 2 +- 11 files changed, 12 insertions(+), 12 deletions(-) diff --git a/helmfile/apps/univention-management-stack/values-ldap-server.gotmpl b/helmfile/apps/univention-management-stack/values-ldap-server.gotmpl index e1a6dbaf..ab96a512 100644 --- a/helmfile/apps/univention-management-stack/values-ldap-server.gotmpl +++ b/helmfile/apps/univention-management-stack/values-ldap-server.gotmpl @@ -21,7 +21,7 @@ ldapServer: image: registry: "{{ .Values.global.imageRegistry }}" repository: "{{ .Values.images.umsLdapServer.repository }}" - pullPolicy: "Always" + pullPolicy: "{{ .Values.global.imagePullPolicy }}" tag: "{{ .Values.images.umsLdapServer.tag }}" pullSecrets: {{- range .Values.global.imagePullSecrets }} diff --git a/helmfile/apps/univention-management-stack/values-notifications-api.gotmpl b/helmfile/apps/univention-management-stack/values-notifications-api.gotmpl index a3c65a23..5e619ab4 100644 --- a/helmfile/apps/univention-management-stack/values-notifications-api.gotmpl +++ b/helmfile/apps/univention-management-stack/values-notifications-api.gotmpl @@ -24,7 +24,7 @@ postgresql: image: registry: "{{ .Values.global.imageRegistry }}" repository: "{{ .Values.images.umsNotificationsApi.repository }}" - pullPolicy: "Always" + pullPolicy: "{{ .Values.global.imagePullPolicy }}" tag: "{{ .Values.images.umsNotificationsApi.tag }}" pullSecrets: {{- range .Values.global.imagePullSecrets }} diff --git a/helmfile/apps/univention-management-stack/values-portal-frontend.gotmpl b/helmfile/apps/univention-management-stack/values-portal-frontend.gotmpl index 05d7a67c..fc84ba60 100644 --- a/helmfile/apps/univention-management-stack/values-portal-frontend.gotmpl +++ b/helmfile/apps/univention-management-stack/values-portal-frontend.gotmpl @@ -10,7 +10,7 @@ portalFrontend: image: registry: "{{ .Values.global.imageRegistry }}" repository: "{{ .Values.images.umsPortalFrontend.repository }}" - pullPolicy: "Always" + pullPolicy: "{{ .Values.global.imagePullPolicy }}" tag: "{{ .Values.images.umsPortalFrontend.tag }}" pullSecrets: {{- range .Values.global.imagePullSecrets }} diff --git a/helmfile/apps/univention-management-stack/values-portal-listener.gotmpl b/helmfile/apps/univention-management-stack/values-portal-listener.gotmpl index fb997119..87ed5969 100644 --- a/helmfile/apps/univention-management-stack/values-portal-listener.gotmpl +++ b/helmfile/apps/univention-management-stack/values-portal-listener.gotmpl @@ -27,7 +27,7 @@ portalListener: image: registry: "{{ .Values.global.imageRegistry }}" repository: "{{ .Values.images.umsPortalListener.repository }}" - pullPolicy: "Always" + pullPolicy: "{{ .Values.global.imagePullPolicy }}" tag: "{{ .Values.images.umsPortalListener.tag }}" pullSecrets: {{- range .Values.global.imagePullSecrets }} diff --git a/helmfile/apps/univention-management-stack/values-portal-server.gotmpl b/helmfile/apps/univention-management-stack/values-portal-server.gotmpl index 4456936f..65db5b61 100644 --- a/helmfile/apps/univention-management-stack/values-portal-server.gotmpl +++ b/helmfile/apps/univention-management-stack/values-portal-server.gotmpl @@ -16,7 +16,7 @@ portalServer: image: registry: "{{ .Values.global.imageRegistry }}" repository: "{{ .Values.images.umsPortalServer.repository }}" - pullPolicy: "Always" + pullPolicy: "{{ .Values.global.imagePullPolicy }}" tag: "{{ .Values.images.umsPortalServer.tag }}" pullSecrets: {{- range .Values.global.imagePullSecrets }} diff --git a/helmfile/apps/univention-management-stack/values-stack-data-swp.gotmpl b/helmfile/apps/univention-management-stack/values-stack-data-swp.gotmpl index 4d168e65..182a9e77 100644 --- a/helmfile/apps/univention-management-stack/values-stack-data-swp.gotmpl +++ b/helmfile/apps/univention-management-stack/values-stack-data-swp.gotmpl @@ -12,7 +12,7 @@ stackDataSwp: image: registry: "{{ .Values.global.imageRegistry }}" repository: "{{ .Values.images.umsDataLoader.repository }}" - pullPolicy: "Always" + pullPolicy: "{{ .Values.global.imagePullPolicy }}" tag: "{{ .Values.images.umsDataLoader.tag }}" pullSecrets: {{- range .Values.global.imagePullSecrets }} diff --git a/helmfile/apps/univention-management-stack/values-stack-data-ums.gotmpl b/helmfile/apps/univention-management-stack/values-stack-data-ums.gotmpl index 7bdf2035..2110ecf0 100644 --- a/helmfile/apps/univention-management-stack/values-stack-data-ums.gotmpl +++ b/helmfile/apps/univention-management-stack/values-stack-data-ums.gotmpl @@ -18,7 +18,7 @@ stackDataContext: image: registry: "{{ .Values.global.imageRegistry }}" repository: "{{ .Values.images.umsDataLoader.repository }}" - pullPolicy: "Always" + pullPolicy: "{{ .Values.global.imagePullPolicy }}" tag: "{{ .Values.images.umsDataLoader.tag }}" pullSecrets: {{- range .Values.global.imagePullSecrets }} diff --git a/helmfile/apps/univention-management-stack/values-store-dav.gotmpl b/helmfile/apps/univention-management-stack/values-store-dav.gotmpl index eb0d9249..6858104b 100644 --- a/helmfile/apps/univention-management-stack/values-store-dav.gotmpl +++ b/helmfile/apps/univention-management-stack/values-store-dav.gotmpl @@ -11,7 +11,7 @@ storeDav: image: registry: "{{ .Values.global.imageRegistry }}" repository: "{{ .Values.images.umsStoreDav.repository }}" - pullPolicy: "Always" + pullPolicy: "{{ .Values.global.imagePullPolicy }}" tag: "{{ .Values.images.umsStoreDav.tag }}" pullSecrets: {{- range .Values.global.imagePullSecrets }} @@ -21,7 +21,7 @@ image: configHtpasswd: registry: "{{ .Values.global.imageRegistry }}" repository: "{{ .Values.images.umsConfigHtpasswd.repository }}" - pullPolicy: "Always" + pullPolicy: "{{ .Values.global.imagePullPolicy }}" tag: "{{ .Values.images.umsConfigHtpasswd.tag }}" pullSecrets: {{- range .Values.global.imagePullSecrets }} diff --git a/helmfile/apps/univention-management-stack/values-udm-rest-api.gotmpl b/helmfile/apps/univention-management-stack/values-udm-rest-api.gotmpl index 53ddb893..22bdd262 100644 --- a/helmfile/apps/univention-management-stack/values-udm-rest-api.gotmpl +++ b/helmfile/apps/univention-management-stack/values-udm-rest-api.gotmpl @@ -34,7 +34,7 @@ udmRestApi: image: registry: "{{ .Values.global.imageRegistry }}" repository: "{{ .Values.images.umsUdmRestApi.repository }}" - pullPolicy: "Always" + pullPolicy: "{{ .Values.global.imagePullPolicy }}" tag: "{{ .Values.images.umsUdmRestApi.tag }}" pullSecrets: {{- range .Values.global.imagePullSecrets }} diff --git a/helmfile/apps/univention-management-stack/values-umc-gateway.gotmpl b/helmfile/apps/univention-management-stack/values-umc-gateway.gotmpl index 528a10e6..4c4f27e1 100644 --- a/helmfile/apps/univention-management-stack/values-umc-gateway.gotmpl +++ b/helmfile/apps/univention-management-stack/values-umc-gateway.gotmpl @@ -18,7 +18,7 @@ umcGateway: image: registry: "{{ .Values.global.imageRegistry }}" repository: "{{ .Values.images.umsUmcGateway.repository }}" - pullPolicy: "Always" + pullPolicy: "{{ .Values.global.imagePullPolicy }}" tag: "{{ .Values.images.umsUmcGateway.tag }}" pullSecrets: {{- range .Values.global.imagePullSecrets }} diff --git a/helmfile/apps/univention-management-stack/values-umc-server.gotmpl b/helmfile/apps/univention-management-stack/values-umc-server.gotmpl index c6c5554d..fe4da71c 100644 --- a/helmfile/apps/univention-management-stack/values-umc-server.gotmpl +++ b/helmfile/apps/univention-management-stack/values-umc-server.gotmpl @@ -29,7 +29,7 @@ umcServer: image: registry: "{{ .Values.global.imageRegistry }}" repository: "{{ .Values.images.umsUmcServer.repository }}" - pullPolicy: "Always" + pullPolicy: "{{ .Values.global.imagePullPolicy }}" tag: "{{ .Values.images.umsUmcServer.tag }}" pullSecrets: {{- range .Values.global.imagePullSecrets }}