From f73efbe074436eda6276bbf32c781fa913c6a17a Mon Sep 17 00:00:00 2001 From: Wade Rossmann Date: Fri, 14 May 2021 00:09:45 -0700 Subject: [PATCH] Node affinity values must be quoted. (#6348) --- bitnami/common/Chart.yaml | 4 ++-- bitnami/common/templates/_affinities.tpl | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bitnami/common/Chart.yaml b/bitnami/common/Chart.yaml index 4ab77951e..337c293ad 100644 --- a/bitnami/common/Chart.yaml +++ b/bitnami/common/Chart.yaml @@ -2,7 +2,7 @@ annotations: category: Infrastructure apiVersion: v2 # Please make sure that version and appVersion are always the same. -appVersion: 1.5.0 +appVersion: 1.5.1 description: A Library Helm Chart for grouping common logic between bitnami charts. This chart is not deployable by itself. home: https://github.com/bitnami/charts/tree/master/bitnami/common icon: https://bitnami.com/downloads/logos/bitnami-mark.png @@ -20,4 +20,4 @@ sources: - https://github.com/bitnami/charts - http://www.bitnami.com/ type: library -version: 1.5.0 +version: 1.5.1 diff --git a/bitnami/common/templates/_affinities.tpl b/bitnami/common/templates/_affinities.tpl index 493a6dc7e..12b31db21 100644 --- a/bitnami/common/templates/_affinities.tpl +++ b/bitnami/common/templates/_affinities.tpl @@ -12,7 +12,7 @@ preferredDuringSchedulingIgnoredDuringExecution: operator: In values: {{- range .values }} - - {{ . }} + - {{ . | quote }} {{- end }} weight: 1 {{- end -}} @@ -29,7 +29,7 @@ requiredDuringSchedulingIgnoredDuringExecution: operator: In values: {{- range .values }} - - {{ . }} + - {{ . | quote }} {{- end }} {{- end -}}