Skip to content

Commit

Permalink
improvement(helm): update helm to 3.12.2
Browse files Browse the repository at this point in the history
Upgrade Helm from version 3.12.0 to 3.12.2. As this is a non-breaking
change in the Helm CLI, the Garden helm provider should function
seamlessly.

Refer to the Helm 3.12.2 release for more details:
https://github.com/helm/helm/releases/tag/v3.12.2

This update addresses an issue where Helm fails with HTTP error code
426, as reported on the Helm GitHub repository:
helm/helm#12071
numb95 authored and vvagaytsev committed Nov 30, 2023
1 parent 49a609d commit 76b4f70
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions core/src/plugins/kubernetes/helm/helm-cli.ts
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@ import split2 from "split2"
import { LogLevel } from "../../../logger/logger"
import { Dictionary, pickBy } from "lodash"

export const HELM_VERSION = "3.12.0"
export const HELM_VERSION = "3.12.2"

export const helm3Spec: PluginToolSpec = {
name: "helm",
@@ -26,7 +26,7 @@ export const helm3Spec: PluginToolSpec = {
platform: "darwin",
architecture: "amd64",
url: `https://get.helm.sh/helm-v${HELM_VERSION}-darwin-amd64.tar.gz`,
sha256: "8223beb796ff19b59e615387d29be8c2025c5d3aea08485a262583de7ba7d708",
sha256: "6e8bfc84a640e0dc47cc49cfc2d0a482f011f4249e2dff2a7e23c7ef2df1b64e",
extract: {
format: "tar",
targetPath: "darwin-amd64/helm",
@@ -36,7 +36,7 @@ export const helm3Spec: PluginToolSpec = {
platform: "darwin",
architecture: "arm64",
url: `https://get.helm.sh/helm-v${HELM_VERSION}-darwin-arm64.tar.gz`,
sha256: "879f61d2ad245cb3f5018ab8b66a87619f195904a4df3b077c98ec0780e36c37",
sha256: "b60ee16847e28879ae298a20ba4672fc84f741410f438e645277205824ddbf55",
extract: {
format: "tar",
targetPath: "darwin-arm64/helm",
@@ -46,7 +46,7 @@ export const helm3Spec: PluginToolSpec = {
platform: "linux",
architecture: "amd64",
url: `https://get.helm.sh/helm-v${HELM_VERSION}-linux-amd64.tar.gz`,
sha256: "da36e117d6dbc57c8ec5bab2283222fbd108db86c83389eebe045ad1ef3e2c3b",
sha256: "2b6efaa009891d3703869f4be80ab86faa33fa83d9d5ff2f6492a8aebe97b219",
extract: {
format: "tar",
targetPath: "linux-amd64/helm",
@@ -56,7 +56,7 @@ export const helm3Spec: PluginToolSpec = {
platform: "windows",
architecture: "amd64",
url: `https://get.helm.sh/helm-v${HELM_VERSION}-windows-amd64.zip`,
sha256: "52138ba8caec50c358c7aee41aac28d6a8a037878ada3cf5ce6c1049fc772547",
sha256: "35dc439baad85728dafd2be0edd4721ae5b770c5cf72c3adf9558b1415a9cae6",
extract: {
format: "zip",
targetPath: "windows-amd64/helm.exe",

0 comments on commit 76b4f70

Please sign in to comment.