v0.32.12
Using bzlmod with Bazel 6 or later:
-
Add
common --enable_bzlmod
to.bazelrc
. -
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
- image push errors by @apesternikov in #46
- mirror validation should pass with local image only; more testing for mirroring by @apesternikov in #47
Full Changelog: v0.32.11...v0.32.12