From e1ac1ffd927e548f8988bbf3cb040aedb34737dc Mon Sep 17 00:00:00 2001 From: Johnathan Kupferer Date: Mon, 18 Sep 2023 13:25:48 -0400 Subject: [PATCH] Fix anarchy namespace name in helm --- helm/templates/catalog/namespaces.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helm/templates/catalog/namespaces.yaml b/helm/templates/catalog/namespaces.yaml index 8e5b564d4..ae0b90f35 100644 --- a/helm/templates/catalog/namespaces.yaml +++ b/helm/templates/catalog/namespaces.yaml @@ -31,9 +31,9 @@ roleRef: kind: ClusterRole name: babylon:anarchy:catalog-access subjects: -{{- range $anarchyNamespace, $anarchyConfig := $.Values.anarchy.namespaces }} +{{- range $.Values.anarchy.namespaces }} - kind: ServiceAccount name: anarchy - namespace: {{ $anarchyNamespace }} + namespace: {{ .name }} {{- end }} {{- end }}