Skip to content

Commit 8eaccb7

Browse files
feat(helm): upgrading helm to 3.18.4 (cherry-pick #23724) (#23731)
Signed-off-by: Mubarak Jama <[email protected]> Co-authored-by: Mubarak Jama <[email protected]>
1 parent fed347d commit 8eaccb7

9 files changed

+20
-7
lines changed

docs/operator-manual/upgrading/3.0-3.1.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,12 +60,12 @@ If it returns `"enablePKCEAuthentication": true`, then PKCE is used.
6060

6161
On your identity provider, ensure that the OIDC client used for Argo CD has the `/auth/callback` endpoint of your Argo CD URL (e.g. https://argocd.example.com/auth/callback) in the redirect URIs.
6262

63-
## Helm Upgraded to 3.18.3
63+
## Helm Upgraded to 3.18.4
6464

65-
Argo CD v3.1 upgrades the bundled Helm version to 3.18.3. There are no breaking changes in Helm 3.18 according to the
65+
Argo CD v3.1 upgrades the bundled Helm version to 3.18.4. There are no breaking changes in Helm 3.18 according to the
6666
[release notes](https://github.com/helm/helm/releases/tag/v3.18.0).
6767

6868
## Kustomize Upgraded to 5.7.0
6969

70-
Argo CD v3.1 upgrades the bundled Kustomize version to 5.7.0. There are no breaking changes in Kustomize 5.7 according
70+
Argo CD v3.1 upgrades the bundled Kustomize version to 5.7.0. There are no breaking changes in Kustomize 5.7 according
7171
to the [release notes](https://github.com/kubernetes-sigs/kustomize/releases/tag/kustomize%2Fv5.7.0).
Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,19 @@
11
#!/usr/bin/env sh
22

3-
# Usage: ./add-helm-checksums.sh 3.9.4 # use the desired version
3+
# Usage: ./add-helm-checksums.sh <helm-version> # use the desired version e.g. 3.18.4
44

55
set -e
6+
67
for arch in amd64 arm64 ppc64le s390x; do
7-
wget "https://get.helm.sh/helm-v$1-linux-$arch.tar.gz.sha256sum" -O "helm-v$1-linux-$arch.tar.gz.sha256"
8+
checksumfile="helm-v$1-linux-$arch.tar.gz.sha256"
9+
wget "https://get.helm.sh/helm-v$1-linux-$arch.tar.gz.sha256sum" -O "$checksumfile"
10+
outname="$(git rev-parse --show-toplevel)/hack/installers/checksums/helm-v$1-linux-$arch.tar.gz.sha256"
11+
mv $checksumfile $outname
812
done
913

1014
for arch in amd64 arm64; do
11-
wget "https://get.helm.sh/helm-v$1-darwin-$arch.tar.gz.sha256sum" -O "helm-v$1-darwin-$arch.tar.gz.sha256"
15+
checksumfile="helm-v$1-darwin-$arch.tar.gz.sha256"
16+
wget "https://get.helm.sh/helm-v$1-darwin-$arch.tar.gz.sha256sum" -O "$checksumfile"
17+
outname="$(git rev-parse --show-toplevel)/hack/installers/checksums/helm-v$1-darwin-$arch.tar.gz.sha256"
18+
mv $checksumfile $outname
1219
done
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
860a7238285b44b5dc7b3c4dad6194316885d7015d77c34e23177e0e9554af8f helm-v3.18.4-darwin-amd64.tar.gz
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
041849741550b20710d7ad0956e805ebd960b483fe978864f8e7fdd03ca84ec8 helm-v3.18.4-darwin-arm64.tar.gz
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
f8180838c23d7c7d797b208861fecb591d9ce1690d8704ed1e4cb8e2add966c1 helm-v3.18.4-linux-amd64.tar.gz
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
c0a45e67eef0c7416a8a8c9e9d5d2d30d70e4f4d3f7bea5de28241fffa8f3b89 helm-v3.18.4-linux-arm64.tar.gz
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
dbd74c59e7710f26e058596723abbf73662b553e01f40dfb08508ffffaeb7b81 helm-v3.18.4-linux-ppc64le.tar.gz
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
c8bafb34bcebd53494f0223239977e1ff7b487e714598a5843a0cb1788e20075 helm-v3.18.4-linux-s390x.tar.gz

hack/tool-versions.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# Use ./hack/installers/checksums/add-helm-checksums.sh and
1212
# add-kustomize-checksums.sh to help download checksums.
1313
###############################################################################
14-
helm3_version=3.18.3
14+
helm3_version=3.18.4
1515
kustomize5_version=5.7.0
1616
protoc_version=29.3
1717
oras_version=1.2.0

0 commit comments

Comments
 (0)