Add extra podLabels options to Flagger Helm Chart

Signed-off-by: eduardobarbosa <eduardobarbosadacosta@gmail.com>
This commit is contained in:
eduardobarbosa
2021-08-04 15:10:00 -03:00
parent e2b08eb4dc
commit 3811470ebf
2 changed files with 7 additions and 0 deletions
+5
View File
@@ -22,6 +22,11 @@ spec:
labels:
app.kubernetes.io/name: {{ template "flagger.name" . }}
app.kubernetes.io/instance: {{ .Release.Name }}
{{- if .Values.podLabels }}
{{- range $key, $value := .Values.podLabels }}
{{ $key }}: {{ $value | quote }}
{{- end }}
{{- end }}
annotations:
{{- if .Values.podAnnotations }}
{{ toYaml .Values.podAnnotations | indent 8 }}
+2
View File
@@ -160,3 +160,5 @@ istio:
podDisruptionBudget:
enabled: false
minAvailable: 1
podLabels: {}