Skip to content

v0.32.11

Compare
Choose a tag to compare
@github-actions github-actions released this 19 Aug 04:43
· 5 commits to main since this release
0f0562b

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.11")
git_override(
    module_name = "rules_gitops",
    commit = "0f0562b505330446e845d5f1d4fbb827c9e6903f",
    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 = "4e8780d3e6439ae5c46aac351d0dd1af643d165d3f92e1d01ebd77e39f7204ca",
    strip_prefix = "rules_gitops-0.32.11",
    urls = ["https://github.com/fasterci/rules_gitops/releases/download/v0.32.11/rules_gitops-v0.32.11.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.10...v0.32.11