v1.3.1
Using Bzlmod with Bazel 6:
Add to your MODULE.bazel file:
bazel_dep(name = "masorange_rules_helm", version = "1.3.1")
git_override(module_name = "masorange_rules_helm", remote = "https://github.com/masmovil/masorange_rules_helm", commit = "11cea9518b2d846b36f53605e9f2084554359ddc")
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 = "12d55d3eaa6c98064d16f85f4f5ced787172a74b80eff606301b37413b38b559",
strip_prefix = "masorange_rules_helm-1.3.1",
urls = [
"https://github.com/masmovil/masorange_rules_helm/releases/download/v1.3.1/masorange_rules_helm-v1.3.1.tar.gz",
],
)
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
- Minor fix on how to helm toolchain is imported in
helm_lint
test rule.