Skip to content

Commit d80cb7b

Browse files
mdariieliobischof
andauthored
feat: add option to insert additional labels to the pod (#172)
* Add option to insert additional labels to the pod * increased chart version * bump minor --------- Co-authored-by: Elio Bischof <[email protected]>
1 parent 6f26cc4 commit d80cb7b

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

charts/zitadel/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: zitadel
33
description: A Helm chart for ZITADEL
44
type: application
55
appVersion: "v2.41.1"
6-
version: 7.6.1
6+
version: 7.7.0
77
kubeVersion: ">= 1.21.0-0"
88
icon: https://zitadel.com/zitadel-logo-dark.svg
99
maintainers:

charts/zitadel/templates/deployment.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ spec:
2626
labels:
2727
app.kubernetes.io/component: start
2828
{{- include "zitadel.selectorLabels" . | nindent 8 }}
29+
{{- with .Values.podAdditionalLabels }}
30+
{{- toYaml . | nindent 8 }}
31+
{{- end }}
2932
spec:
3033
{{- with .Values.imagePullSecrets }}
3134
imagePullSecrets:

charts/zitadel/values.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,8 @@ serviceAccount:
102102

103103
podAnnotations: {}
104104

105+
podAdditionalLabels: {}
106+
105107
podSecurityContext:
106108
runAsNonRoot: true
107109
runAsUser: 1000

0 commit comments

Comments
 (0)