From 09bc922e8fb0c6daa40d8b9926182067d1901c64 Mon Sep 17 00:00:00 2001 From: Vincent Smith Date: Fri, 24 Aug 2018 14:28:21 -0400 Subject: [PATCH] Fix typo in ui-crb.yaml This was binding roles to the service account in the `.Release.Name` instead of `.Release.Namespace` namespace --- charts/argo/templates/ui-crb.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/argo/templates/ui-crb.yaml b/charts/argo/templates/ui-crb.yaml index daa1f302..f27e73df 100644 --- a/charts/argo/templates/ui-crb.yaml +++ b/charts/argo/templates/ui-crb.yaml @@ -9,4 +9,4 @@ roleRef: subjects: - kind: ServiceAccount name: {{ .Values.ui.serviceAccount }} - namespace: {{ .Release.Name }} + namespace: {{ .Release.Namespace }}