From 82542b122627f608c6d2dcd4563cd0bef33401b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bastian=20Echterh=C3=B6lter?= Date: Fri, 25 Oct 2024 09:34:26 +0200 Subject: [PATCH] feat: allow to specify virtualworkspaceurl --- charts/account-operator/templates/deployment.yaml | 2 ++ charts/account-operator/values.yaml | 1 + 2 files changed, 3 insertions(+) diff --git a/charts/account-operator/templates/deployment.yaml b/charts/account-operator/templates/deployment.yaml index ce1c5da8d..667d2ab13 100644 --- a/charts/account-operator/templates/deployment.yaml +++ b/charts/account-operator/templates/deployment.yaml @@ -56,6 +56,8 @@ spec: env: - name: KCP_ENABLED value: "{{ .Values.kcp.enabled }}" + - name: VIRTUAL_WORKSPACE_URL + value: "{{ .Values.kcp.virtualWorkspaceUrl }}" {{- if .Values.kubeconfigSecret }} - name: KUBECONFIG value: /api-kubeconfig/kubeconfig diff --git a/charts/account-operator/values.yaml b/charts/account-operator/values.yaml index 4ff565347..bf2331cb2 100644 --- a/charts/account-operator/values.yaml +++ b/charts/account-operator/values.yaml @@ -25,5 +25,6 @@ deployment: kcp: enabled: false + virtualWorkspaceUrl: "" kubeconfigSecret: ""