This repository was archived by the owner on Jul 26, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +7
-0
lines changed
charts/kubernetes-external-secrets Expand file tree Collapse file tree 3 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -79,6 +79,7 @@ The following table lists the configurable parameters of the `kubernetes-externa
7979| ` serviceAccount.create ` | Whether a new service account name should be created. | ` true ` |
8080| ` serviceAccount.name ` | Service account to be used. | automatically generated |
8181| ` serviceAccount.annotations ` | Annotations to be added to service account | ` nil ` |
82+ | ` deploymentLabels ` | Additional labels to be added the deployment | ` {} ` |
8283| ` podAnnotations ` | Annotations to be added to pods | ` {} ` |
8384| ` podLabels ` | Additional labels to be added to pods | ` {} ` |
8485| ` priorityClassName ` | Priority class to be assigned to pods
Original file line number Diff line number Diff line change @@ -8,6 +8,9 @@ metadata:
88 helm.sh/chart : {{ include "kubernetes-external-secrets.chart" . }}
99 app.kubernetes.io/instance : {{ .Release.Name }}
1010 app.kubernetes.io/managed-by : {{ .Release.Service }}
11+ {{- if .Values.deploymentLabels }}
12+ {{- toYaml .Values.deploymentLabels | nindent 4 }}
13+ {{- end }}
1114spec :
1215 replicas : {{ .Values.replicaCount }}
1316 selector :
Original file line number Diff line number Diff line change @@ -134,6 +134,9 @@ imagePullSecrets: []
134134nameOverride : " "
135135fullnameOverride : " "
136136
137+ # All label values must be strings
138+ deploymentLabels : {}
139+
137140podAnnotations : {}
138141podLabels : {}
139142
You can’t perform that action at this time.
0 commit comments