v1.1.0
Using Bzlmod with Bazel 6:
Add to your MODULE.bazel file:
bazel_dep(name = "masorange_rules_helm", version = "1.1.0")
git_override(module_name = "masorange_rules_helm", remote = "https://github.com/masmovil/masorange_rules_helm", commit = "c1589dc06f87d40b046ed62575e4bee7e99111a2")
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 = "a984c007452b344ba09a14648b9a9d756e00ce1924ee20baf0597dca6b883e3c",
urls = [
"https://github.com/masmovil/masorange_rules_helm/archive/refs/tags/v1.1.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
IMPORTANT: The name of the repo has changed. According to this, the name of the bazel rules has also changed to masorange_rules_helm
. You must change every reference to the old name from com_github_masmovil_bazel_rules
to masorange_rules_helm
.
IMPORTANT: How the rules are configured via non-bzlmod workspaces have also been renamed from mm_repositories
to masorange_rules_helm_repositories
and mm_config
to masorange_rules_helm_configure
.