Skip to content

v1.3.0

Compare
Choose a tag to compare
@danigar danigar released this 04 Dec 10:54
· 8 commits to master since this release
7ea9602

Using Bzlmod with Bazel 6:

Add to your MODULE.bazel file:

bazel_dep(name = "masorange_rules_helm", version = "1.3.0")
git_override(module_name = "masorange_rules_helm", remote = "https://github.com/masmovil/masorange_rules_helm", commit = "7ea96022369cfe95e98258c51e5dbdf456f30955")

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 = "0ece526a034f31bbd04b9b72c04366a20f5059f41b67c9c0faf9adef79250343",
    urls = [
        "https://github.com/masmovil/masorange_rules_helm/archive/refs/tags/v1.3.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

  • Upgrade gcloud SDK toolchain binary to v5.0.2