From a91740bb43ba8a4b7995e1ba8e127c96d2d06820 Mon Sep 17 00:00:00 2001 From: Daniela Plascencia Date: Tue, 24 Oct 2023 16:33:08 +0200 Subject: [PATCH] fix: remove extra ) from env variables (#7379) The ISTIO_INGRESS_GATEWAY_PRINCIPAL and NOTEBOOK_CONTROLLER_PRINCIPAL had an extra ) at the end of the value. Fixes #7374 --- .../profile-controller/config/manager/kustomization.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/profile-controller/config/manager/kustomization.yaml b/components/profile-controller/config/manager/kustomization.yaml index 57e480b0793..f72d05bd23e 100644 --- a/components/profile-controller/config/manager/kustomization.yaml +++ b/components/profile-controller/config/manager/kustomization.yaml @@ -8,7 +8,7 @@ configMapGenerator: - WORKLOAD_IDENTITY= - USERID_HEADER="kubeflow-userid" - USERID_PREFIX= - - ISTIO_INGRESS_GATEWAY_PRINCIPAL="cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account") - - NOTEBOOK_CONTROLLER_PRINCIPAL="cluster.local/ns/kubeflow/sa/notebook-controller-service-account") + - ISTIO_INGRESS_GATEWAY_PRINCIPAL="cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account" + - NOTEBOOK_CONTROLLER_PRINCIPAL="cluster.local/ns/kubeflow/sa/notebook-controller-service-account" - KFP_UI_PRINCIPAL="cluster.local/ns/kubeflow/sa/ml-pipeline-ui" name: config