From 81202b6156075c75b8fac958435924db99a17b64 Mon Sep 17 00:00:00 2001 From: "andreas.dinauer" Date: Sun, 26 Oct 2025 20:31:01 +0100 Subject: [PATCH] =?UTF-8?q?=E2=AC=86=EF=B8=8F=200.2.5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- chart/Chart.yaml | 2 +- chart/templates/backend/deployment.yaml | 12 ++++++++++-- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/chart/Chart.yaml b/chart/Chart.yaml index 06a5991..a854ff3 100644 --- a/chart/Chart.yaml +++ b/chart/Chart.yaml @@ -1,3 +1,3 @@ apiVersion: v2 name: kubooboo-chart -version: 0.2.4 \ No newline at end of file +version: 0.2.5 \ No newline at end of file diff --git a/chart/templates/backend/deployment.yaml b/chart/templates/backend/deployment.yaml index c7d3203..8486f69 100644 --- a/chart/templates/backend/deployment.yaml +++ b/chart/templates/backend/deployment.yaml @@ -18,9 +18,12 @@ spec: - name: jwt secret: secretName: jwt + - name: kubeconfig + secret: + secretName: kubeconfig containers: - name: backend-pod - image: harbor.dinauer.dev/kubooboo/backend:30 + image: harbor.dinauer.dev/kubooboo/backend:31 resources: requests: memory: "128Mi" @@ -33,6 +36,9 @@ spec: - name: jwt mountPath: /etc/secrets readOnly: true + - name: kubeconfig + mountPath: /etc/kubeconfig + readOnly: true env: - name: DB_USER valueFrom: @@ -57,4 +63,6 @@ spec: - name: PRIVATE_KEY_LOCATION value: /etc/secrets/PRIVATE_KEY - name: PUBLIC_KEY_LOCATION - value: /etc/secrets/PUBLIC_KEY \ No newline at end of file + value: /etc/secrets/PUBLIC_KEY + - name: KUBECONFIG_LOCATION + value: /etc/kubeconfig/KUBECONFIG \ No newline at end of file