[bitnami/minio] add commonLabels to template.metadata (#12962)

* Bump chart version

Signed-off-by: Jacob Kuzma <jake@kuz.ma>

* Add commonLabels to deployment.spec.template

Signed-off-by: Jacob Kuzma <jake@kuz.ma>

* Add commonLabels to statefulset.spec.template

Signed-off-by: Jacob Kuzma <jake@kuz.ma>

Signed-off-by: Jacob Kuzma <jake@kuz.ma>
This commit is contained in:
Jake Kuzma
2022-10-24 10:44:18 -04:00
committed by GitHub
parent 200885790b
commit c38ab7c295
3 changed files with 7 additions and 1 deletions

View File

@@ -25,4 +25,4 @@ name: minio
sources:
- https://github.com/bitnami/containers/tree/main/bitnami/minio
- https://min.io
version: 11.10.10
version: 11.10.11

View File

@@ -32,6 +32,9 @@ spec:
template:
metadata:
labels: {{- include "common.labels.standard" . | nindent 8 }}
{{- if .Values.commonLabels }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 8 }}
{{- end }}
{{- if .Values.podLabels }}
{{- include "common.tplvalues.render" (dict "value" .Values.podLabels "context" $) | nindent 8 }}
{{- end }}

View File

@@ -20,6 +20,9 @@ spec:
template:
metadata:
labels: {{- include "common.labels.standard" . | nindent 8 }}
{{- if .Values.commonLabels }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 8 }}
{{- end }}
{{- if .Values.podLabels }}
{{- include "common.tplvalues.render" (dict "value" .Values.podLabels "context" $) | nindent 8 }}
{{- end }}