From 0e8ee4b65af8a53c3f7cab285d61af507bf35e7a Mon Sep 17 00:00:00 2001 From: "Radek Schekalla (SAP)" Date: Wed, 3 Dec 2025 13:30:41 +0100 Subject: [PATCH 1/2] feat: container.extraEnv for env variables for better separation On-behalf-of: Radek Schekalla (SAP) Signed-off-by: Radek Schekalla (SAP) --- charts/mcp-operator/templates/deployment.yaml | 2 +- charts/mcp-operator/values.yaml | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/charts/mcp-operator/templates/deployment.yaml b/charts/mcp-operator/templates/deployment.yaml index 55d9d40..82ecc72 100644 --- a/charts/mcp-operator/templates/deployment.yaml +++ b/charts/mcp-operator/templates/deployment.yaml @@ -92,7 +92,7 @@ spec: - --apiserver-worker-interval={{ .Values.apiserver.worker.intervalTime }} {{- end }} env: - {{- with .Values.managedcontrolplane.extraEnv }} + {{- with .Values.container.extraEnv }} {{- toYaml . | nindent 10 }} {{- end }} ports: diff --git a/charts/mcp-operator/values.yaml b/charts/mcp-operator/values.yaml index afa21ad..3a1c469 100644 --- a/charts/mcp-operator/values.yaml +++ b/charts/mcp-operator/values.yaml @@ -54,8 +54,9 @@ webhooks: managedcontrolplane: disabled: false - # Extra environment variables to add to the init container. - extraEnv: [ ] +container: + # Extra environment variables to add to the container. + extraEnv: [] apiserver: disabled: false From 3c8c4790a4a95be546f5fded28ce51aca4e3d23c Mon Sep 17 00:00:00 2001 From: "Radek Schekalla (SAP)" Date: Wed, 3 Dec 2025 13:43:36 +0100 Subject: [PATCH 2/2] feat: release v0.47.0 On-behalf-of: Radek Schekalla (SAP) Signed-off-by: Radek Schekalla (SAP) --- VERSION | 2 +- charts/mcp-operator/Chart.yaml | 4 ++-- charts/mcp-operator/values.yaml | 2 +- go.mod | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/VERSION b/VERSION index 13113d1..43402bc 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -v0.46.0-dev \ No newline at end of file +v0.47.0 \ No newline at end of file diff --git a/charts/mcp-operator/Chart.yaml b/charts/mcp-operator/Chart.yaml index d821723..6392454 100644 --- a/charts/mcp-operator/Chart.yaml +++ b/charts/mcp-operator/Chart.yaml @@ -2,8 +2,8 @@ apiVersion: v2 name: mcp-operator description: A Helm chart for the mcp-operator type: application -version: v0.46.0 -appVersion: v0.46.0 +version: v0.47.0 +appVersion: v0.47.0 home: https://github.com/openmcp-project/mcp-operator sources: - https://github.com/openmcp-project/mcp-operator \ No newline at end of file diff --git a/charts/mcp-operator/values.yaml b/charts/mcp-operator/values.yaml index 3a1c469..e3e76f8 100644 --- a/charts/mcp-operator/values.yaml +++ b/charts/mcp-operator/values.yaml @@ -14,7 +14,7 @@ deployment: image: repository: ghcr.io/openmcp-project/images/mcp-operator - tag: v0.46.0 + tag: v0.47.0 pullPolicy: IfNotPresent imagePullSecrets: [] diff --git a/go.mod b/go.mod index dabb675..98d7845 100644 --- a/go.mod +++ b/go.mod @@ -16,7 +16,7 @@ require ( github.com/openmcp-project/cluster-provider-gardener/api v0.9.1 github.com/openmcp-project/control-plane-operator v0.1.19 github.com/openmcp-project/controller-utils v0.24.0 - github.com/openmcp-project/mcp-operator/api v0.46.0 + github.com/openmcp-project/mcp-operator/api v0.47.0 github.com/openmcp-project/openmcp-operator/api v0.17.1 github.com/openmcp-project/openmcp-operator/lib v0.17.1 github.com/openmcp-project/service-provider-landscaper v0.12.0