From 9e162b6e9ebb874cc1d06a7b33bc4a05786578aa Mon Sep 17 00:00:00 2001 From: mkrueger92 <7305571+mkrueger92@users.noreply.github.com> Date: Thu, 8 Jan 2026 14:16:00 +0100 Subject: [PATCH] Default to helm chart version for docker image and not latest (#1385) Signed-off-by: mkrueger92 <7305571+mkrueger92@users.noreply.github.com> Co-authored-by: houseme --- .github/workflows/helm-package.yml | 1 - helm/rustfs/values.yaml | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/helm-package.yml b/.github/workflows/helm-package.yml index d1f69288..cb21874c 100644 --- a/.github/workflows/helm-package.yml +++ b/.github/workflows/helm-package.yml @@ -44,7 +44,6 @@ jobs: set -x old_version=$(grep "^appVersion:" helm/rustfs/Chart.yaml | awk '{print $2}') sed -i "s/$old_version/$new_version/g" helm/rustfs/Chart.yaml - sed -i "/^image:/,/^[^ ]/ s/tag:.*/tag: "$new_version"/" helm/rustfs/values.yaml - name: Set up Helm uses: azure/setup-helm@v4.3.0 diff --git a/helm/rustfs/values.yaml b/helm/rustfs/values.yaml index 66b9f006..d8017cc0 100644 --- a/helm/rustfs/values.yaml +++ b/helm/rustfs/values.yaml @@ -11,7 +11,7 @@ image: # This sets the pull policy for images. pullPolicy: IfNotPresent # Overrides the image tag whose default is the chart appVersion. - tag: "latest" + tag: "" # This is for the secrets for pulling an image from a private repository more information can be found here: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ imagePullSecrets: []