Skip to content

Commit

Permalink
Upgrade helm version to v3.12.2
Browse files Browse the repository at this point in the history
  • Loading branch information
moonk-banksalad authored Jul 19, 2023
2 parents 5d23e9e + b331387 commit 8404948
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
12 changes: 6 additions & 6 deletions repositories/helm_repositories.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ def helm_repositories():
)

http_archive(
name = "helm_v3.6.2_darwin",
sha256 = "81a94d2877326012b99ac0737517501e5ed69bb4987884e7f2d0887ad27895a9",
urls = ["https://get.helm.sh/helm-v3.6.2-darwin-amd64.tar.gz"],
name = "helm_v3.12.2_darwin",
sha256 = "6e8bfc84a640e0dc47cc49cfc2d0a482f011f4249e2dff2a7e23c7ef2df1b64e",
urls = ["https://get.helm.sh/helm-v3.12.2-darwin-amd64.tar.gz"],
build_file = "@com_github_masmovil_bazel_rules//:helm.BUILD",
)

http_archive(
name = "helm_v3.6.2_linux",
sha256 = "f3a4be96b8a3b61b14eec1a35072e1d6e695352e7a08751775abf77861a0bf54",
urls = ["https://get.helm.sh/helm-v3.6.2-linux-amd64.tar.gz"],
name = "helm_v3.12.2_linux",
sha256 = "2b6efaa009891d3703869f4be80ab86faa33fa83d9d5ff2f6492a8aebe97b219",
urls = ["https://get.helm.sh/helm-v3.12.2-linux-amd64.tar.gz"],
build_file = "@com_github_masmovil_bazel_rules//:helm.BUILD",
)
4 changes: 2 additions & 2 deletions repositories/repositories.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ def repositories():
"@com_github_masmovil_bazel_rules//toolchains/yq:yq_windows_toolchain",
"@com_github_masmovil_bazel_rules//toolchains/helm:helm_v2.17.0_linux_toolchain",
"@com_github_masmovil_bazel_rules//toolchains/helm:helm_v2.17.0_osx_toolchain",
"@com_github_masmovil_bazel_rules//toolchains/helm-3:helm_v3.6.2_linux_toolchain",
"@com_github_masmovil_bazel_rules//toolchains/helm-3:helm_v3.6.2_osx_toolchain",
"@com_github_masmovil_bazel_rules//toolchains/helm-3:helm_v3.12.2_linux_toolchain",
"@com_github_masmovil_bazel_rules//toolchains/helm-3:helm_v3.12.2_osx_toolchain",
"@com_github_masmovil_bazel_rules//toolchains/kubectl:kubectl_linux_toolchain",
"@com_github_masmovil_bazel_rules//toolchains/kubectl:kubectl_osx_toolchain",
"@com_github_masmovil_bazel_rules//toolchains/sops:sops_linux_amd64_toolchain",
Expand Down
8 changes: 4 additions & 4 deletions toolchains/helm-3/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ load(":toolchain.bzl", "helm_toolchain")
toolchain_type(name = "toolchain_type")

toolchain(
name = "helm_v3.6.2_linux_toolchain",
name = "helm_v3.12.2_linux_toolchain",
exec_compatible_with = [
"@platforms//os:linux",
"@platforms//cpu:x86_64",
Expand All @@ -14,15 +14,15 @@ toolchain(
"@platforms//os:linux",
"@platforms//cpu:x86_64",
],
toolchain = "@helm_toolchain_configure//:helm_v3.6.2_linux",
toolchain = "@helm_toolchain_configure//:helm_v3.12.2_linux",
toolchain_type = ":toolchain_type",
)

toolchain(
name = "helm_v3.6.2_osx_toolchain",
name = "helm_v3.12.2_osx_toolchain",
target_compatible_with = [
"@platforms//os:osx",
],
toolchain = "@helm_toolchain_configure//:helm_v3.6.2_darwin",
toolchain = "@helm_toolchain_configure//:helm_v3.12.2_darwin",
toolchain_type = ":toolchain_type",
)
8 changes: 4 additions & 4 deletions toolchains/helm-3/BUILD.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ package(default_visibility = ["//visibility:public"])
load("@com_github_masmovil_bazel_rules//toolchains/helm-3:toolchain.bzl", "helm_toolchain")

helm_toolchain(
name = "helm_v3.6.2_darwin",
tool = "@helm_v3.6.2_darwin//:helm",
name = "helm_v3.12.2_darwin",
tool = "@helm_v3.12.2_darwin//:helm",
helm_version = "3.4.1",
helm_xdg_data_home = "%{HOME}/Library",
helm_xdg_config_home = "%{HOME}/Library/Preferences",
Expand All @@ -16,8 +16,8 @@ helm_toolchain(
)

helm_toolchain(
name = "helm_v3.6.2_linux",
tool = "@helm_v3.6.2_linux//:helm",
name = "helm_v3.12.2_linux",
tool = "@helm_v3.12.2_linux//:helm",
helm_version = "3.4.1",
helm_xdg_data_home = "%{HOME}/.local/share",
helm_xdg_config_home = "%{HOME}/.config",
Expand Down

0 comments on commit 8404948

Please sign in to comment.