feat(stable/minio): fix invalid yaml generation for podAnnotations (#17529)

bumped the version to 2.5.16

Signed-off-by: Anton Malinskiy <amalinskiy@atlassian.com>
This commit is contained in:
Anton Malinskiy
2019-10-04 18:07:23 -07:00
committed by Kubernetes Prow Robot
parent b38dff77b0
commit 5cb2716e09
2 changed files with 4 additions and 2 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
apiVersion: v1
description: MinIO is a high performance distributed object storage server, designed for large-scale private cloud infrastructure.
name: minio
version: 2.5.15
version: 2.5.16
appVersion: RELEASE.2019-08-07T01-59-21Z
keywords:
- storage
+3 -1
View File
@@ -49,7 +49,9 @@ spec:
annotations:
checksum/secrets: {{ include (print $.Template.BasePath "/secrets.yaml") . | sha256sum }}
checksum/config: {{ include (print $.Template.BasePath "/configmap.yaml") . | sha256sum }}
{{- if .Values.podAnnotations }}{{ toYaml .Values.podAnnotations | indent 8 }}{{- end }}
{{- if .Values.podAnnotations }}
{{ toYaml .Values.podAnnotations | trimSuffix "\n" | indent 8 }}
{{- end }}
spec:
{{- if .Values.priorityClassName }}
priorityClassName: "{{ .Values.priorityClassName }}"