Open
Description
We need to set some labels by default to our deployments/pods.
global.labels
does not attach these labels to the pods.
Please add
{{- if .Values.global.labels }}
{{ toYaml .Values.global.labels }}
{{- end }}
to the deployment.yaml or create another podLabels
helper method that includes the global labels.
Activity