Skip to content

v0.32.12

Compare
Choose a tag to compare
@github-actions github-actions released this 31 Aug 05:33
· 2 commits to main since this release
d358aba

Using bzlmod with Bazel 6 or later:

  1. Add common --enable_bzlmod to .bazelrc.

  2. Add to your MODULE.bazel file:

bazel_dep(name = "rules_gitops", version = "0.32.12")
git_override(
    module_name = "rules_gitops",
    commit = "d358aba6d77ce74b25d0d7b55a8ac77c30f6874d",
    remote = "https://github.com/fasterci/rules_gitops",
)

kustomize = use_extension("@rules_gitops//gitops:extensions.bzl", "kustomize")
kustomize.kustomize_toolchain()
use_repo(kustomize, "kustomize_bin")

Using WORKSPACE:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "rules_gitops",
    sha256 = "1260d51067f28eaa47375ea5ac794802ba27c3c123c08911190da0516e18d174",
    strip_prefix = "rules_gitops-0.32.12",
    urls = ["https://github.com/fasterci/rules_gitops/releases/download/v0.32.12/rules_gitops-v0.32.12.tar.gz"],
)

load("@rules_gitops//gitops:deps.bzl", "rules_gitops_dependencies")

rules_gitops_dependencies()

load("@rules_gitops//gitops:repositories.bzl", "rules_gitops_repositories")

rules_gitops_repositories()

load("@rules_gitops//skylib:k8s.bzl", "kubeconfig")

kubeconfig(
    name = "k8s_dev_test",
    cluster = "it_kubernetes_cluster_name",
    use_host_config = True,
)

What's Changed

Full Changelog: v0.32.11...v0.32.12