From f86cdf81e04609de5b80deb624da65cb43563b8e Mon Sep 17 00:00:00 2001 From: Cyril Jouve Date: Fri, 19 Aug 2022 13:03:32 +0200 Subject: [PATCH] drop -foo suffix from default serviceaccount name (#11842) Signed-off-by: Cyril Jouve Signed-off-by: Cyril Jouve --- bitnami/haproxy/Chart.yaml | 2 +- bitnami/haproxy/templates/_helpers.tpl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/haproxy/Chart.yaml b/bitnami/haproxy/Chart.yaml index 1a7e40dfe..c10a10e14 100644 --- a/bitnami/haproxy/Chart.yaml +++ b/bitnami/haproxy/Chart.yaml @@ -23,4 +23,4 @@ name: haproxy sources: - https://github.com/bitnami/containers/tree/main/bitnami/haproxy - https://github.com/haproxytech/haproxy -version: 0.3.34 +version: 0.4.0 diff --git a/bitnami/haproxy/templates/_helpers.tpl b/bitnami/haproxy/templates/_helpers.tpl index 5251c1d63..e6b698de0 100644 --- a/bitnami/haproxy/templates/_helpers.tpl +++ b/bitnami/haproxy/templates/_helpers.tpl @@ -28,7 +28,7 @@ Create the name of the service account to use */}} {{- define "haproxy.serviceAccountName" -}} {{- if .Values.serviceAccount.create -}} - {{ default (printf "%s-foo" (include "common.names.fullname" .)) .Values.serviceAccount.name }} + {{ default (include "common.names.fullname" .) .Values.serviceAccount.name }} {{- else -}} {{ default "default" .Values.serviceAccount.name }} {{- end -}}