v1.2.0
Using Bzlmod with Bazel 6:
Add to your MODULE.bazel file:
bazel_dep(name = "masorange_rules_helm", version = "1.2.0")
git_override(module_name = "masorange_rules_helm", remote = "https://github.com/masmovil/masorange_rules_helm", commit = "d04350fddde4431550aff61ad008f07a77a9a56f")
We are still working on publishing the rules to the bazel central registry. In the meantime, if you want to use this rules you will can override them using git_override
to fetch them from this git repository.
Using WORKSPACE:
Paste this into your WORKSPACE file:
workspace(
name = "helm-workspace",
)
http_archive(
name = "masorange_rules_helm",
sha256 = "474120951f5633c96eda52a890d06998c62f880de13ac06aa0bc72a168cd29aa",
urls = [
"https://github.com/masmovil/masorange_rules_helm/archive/refs/tags/v1.2.0.zip",
],
)
load("@masorange_rules_helm//:repositories.bzl", "masorange_rules_helm_repositories")
masorange_rules_helm_repositories()
load("@masorange_rules_helm//:config.bzl", "masorange_rules_helm_configure")
masorange_rules_helm_configure()
What's Changed
- Add new helm toolchain version
v3.16.3
- Set new default helm version to
v3.16.3