You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by mb...@apache.org on 2022/07/09 08:35:35 UTC

[flink-kubernetes-operator] branch main updated: [hotfix] Correct outdated reference to serviceaccount

This is an automated email from the ASF dual-hosted git repository.

mbalassi pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/flink-kubernetes-operator.git


The following commit(s) were added to refs/heads/main by this push:
     new 0477c43  [hotfix] Correct outdated reference to serviceaccount
0477c43 is described below

commit 0477c432b4036933cca109649726a3664b6fe846
Author: Marton Balassi <ma...@apple.com>
AuthorDate: Sat Jul 9 10:34:46 2022 +0200

    [hotfix] Correct outdated reference to serviceaccount
---
 helm/flink-kubernetes-operator/templates/_helpers.tpl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/helm/flink-kubernetes-operator/templates/_helpers.tpl b/helm/flink-kubernetes-operator/templates/_helpers.tpl
index 5e7bb9c..65056dc 100644
--- a/helm/flink-kubernetes-operator/templates/_helpers.tpl
+++ b/helm/flink-kubernetes-operator/templates/_helpers.tpl
@@ -74,7 +74,7 @@ Create the name of the operator service account to use
 {{- if .Values.operatorServiceAccount.create }}
 {{- default (include "flink-operator.fullname" .) .Values.operatorServiceAccount.name }}
 {{- else }}
-{{- default "default" .Values.serviceAccount.name }}
+{{- default "default" .Values.operatorServiceAccount.name }}
 {{- end }}
 {{- end }}