Merge pull request #1855 from alemorcuq/1854-annotations

[bitnami/mysql] Fix pod annotations
This commit is contained in:
Alejandro Moreno
2020-01-24 13:15:05 +01:00
committed by GitHub
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
apiVersion: v1
name: mysql
version: 6.7.5
version: 6.7.6
appVersion: 8.0.19
description: Chart to create a Highly available MySQL cluster
keywords:
@@ -19,8 +19,8 @@ spec:
metadata:
labels: {{- include "mysql.labels" . | nindent 8 }}
component: master
{{- if .Values.master.annotations }}
annotations: {{ include "mysql.tplValue" ( dict "value" .Values.master.annotations "context" $) | nindent 8 }}
{{- if .Values.master.podAnnotations }}
annotations: {{ include "mysql.tplValue" ( dict "value" .Values.master.podAnnotations "context" $) | nindent 8 }}
{{- end }}
spec:
{{- include "mysql.imagePullSecrets" . | indent 6 }}
@@ -20,8 +20,8 @@ spec:
metadata:
labels: {{- include "mysql.labels" . | nindent 8 }}
component: slave
{{- if .Values.slave.annotations }}
annotations: {{ include "mysql.tplValue" ( dict "value" .Values.slave.annotations "context" $) | nindent 8 }}
{{- if .Values.slave.podAnnotations }}
annotations: {{ include "mysql.tplValue" ( dict "value" .Values.slave.podAnnotations "context" $) | nindent 8 }}
{{- end }}
spec:
{{- include "mysql.imagePullSecrets" . | indent 6 }}