fix(univention-management-stack): Split values into templated and static

This commit is contained in:
Johannes Bornhold
2023-09-13 14:27:23 +02:00
parent 9409ad829a
commit d3c439038a
2 changed files with 13 additions and 6 deletions

View File

@@ -7,7 +7,7 @@ SPDX-License-Identifier: Apache-2.0
image:
registry: "{{ .Values.global.imageRegistry }}"
repository: "{{ .Values.images.umsLdapNotifier.repository }}"
pullPolicy: "Always"
pullPolicy: "{{ .Values.global.imagePullPolicy }}"
tag: "{{ .Values.images.umsLdapNotifier.tag }}"
pullSecrets:
{{- range .Values.global.imagePullSecrets }}
@@ -17,9 +17,4 @@ image:
resources:
{{ .Values.resources.umsLdapNotifier | toYaml | nindent 2 }}
volumes:
claims:
shared-data: "shared-data-ums-ldap-server-0"
shared-run: "shared-run-ums-ldap-server-0"
...