From 940130a0d72074f7eb14750bbd92fd32d0fe81cc Mon Sep 17 00:00:00 2001 From: Andreas Dinauer Date: Sun, 21 Dec 2025 09:52:34 +0100 Subject: [PATCH] =?UTF-8?q?=E2=AC=86=EF=B8=8F=200.4.7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- chart/Chart.yaml | 2 +- chart/templates/backend/deployment.yaml | 2 +- chart/templates/frontend/deployment.yaml | 2 +- chart/values.yaml | 4 ++++ 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/chart/Chart.yaml b/chart/Chart.yaml index 36654b9..2732e48 100644 --- a/chart/Chart.yaml +++ b/chart/Chart.yaml @@ -1,3 +1,3 @@ apiVersion: v2 name: kubooboo-chart -version: 0.4.6 \ No newline at end of file +version: 0.4.7 \ No newline at end of file diff --git a/chart/templates/backend/deployment.yaml b/chart/templates/backend/deployment.yaml index 6689454..41c39b4 100644 --- a/chart/templates/backend/deployment.yaml +++ b/chart/templates/backend/deployment.yaml @@ -21,7 +21,7 @@ spec: secretName: {{ required ".Values.backend.jwt.secretName required" .Values.backend.jwt.secretName }} containers: - name: backend-pod - image: harbor.dinauer.dev/kubooboo/backend:55 + image: "harbor.dinauer.dev/kubooboo/backend:{{ .Values.backend.image.tag }}" resources: requests: memory: "256Mi" diff --git a/chart/templates/frontend/deployment.yaml b/chart/templates/frontend/deployment.yaml index e1bad72..f3cfc2b 100644 --- a/chart/templates/frontend/deployment.yaml +++ b/chart/templates/frontend/deployment.yaml @@ -22,7 +22,7 @@ spec: cpu: "100m" limits: memory: "128Mi" - image: harbor.dinauer.dev/kubooboo/frontend:21 + image: "harbor.dinauer.dev/kubooboo/frontend:{{ .Values.frontend.image.tag }}" ports: - containerPort: 3000 env: diff --git a/chart/values.yaml b/chart/values.yaml index 9114771..b0f9ce1 100644 --- a/chart/values.yaml +++ b/chart/values.yaml @@ -4,9 +4,13 @@ url: frontend: replicas: 1 + image: + tag: 23 backend: replicas: 1 + image: + tag: 60 bigBucket: replicas: 1 \ No newline at end of file