Releases: fasterci/rules_gitops
Releases · fasterci/rules_gitops
v0.32.0
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.0")
git_override(
module_name = "rules_gitops",
remote = "https://github.com/fasterci/rules_gitops",
commit = "526acc15f94d3e66c731931d747cd3cf55b5b8a3",
)
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 = "2e7fee9c3aa9b962af1f8f18ff60a215df1b6834a295cbdb8b1711ffd3b8278e",
strip_prefix = "rules_gitops-0.32.0",
urls = ["https://github.com/fasterci/rules_gitops/releases/download/v0.32.0/rules_gitops-v0.32.0.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
- log context cancellation reasons by @apesternikov in #33
Full Changelog: v0.31.3...v0.32.0
v0.31.3
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.31.3")
git_override(
module_name = "rules_gitops",
remote = "https://github.com/fasterci/rules_gitops",
commit = "26af9848b4be752549ff0429b3e016ba712fed72",
)
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 = "e92148cb2308b0300f88ea49a8d1491d42d5de7ac6ecf1310dc1adee9e8f4f5d",
strip_prefix = "rules_gitops-0.31.3",
urls = ["https://github.com/fasterci/rules_gitops/releases/download/v0.31.3/rules_gitops-v0.31.3.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
- implement disable_pod_logs by @apesternikov in #31
Full Changelog: v0.31.1...v0.31.3
v0.31.1
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.31.1")
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 = "e4403abd40d68b97cc5a6f811be34ae4e952fb1fc6cfd555d0254b64d5c7149c",
strip_prefix = "rules_gitops-0.31.1",
urls = ["https://github.com/fasterci/rules_gitops/releases/download/v0.31.1/rules_gitops-v0.31.1.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
- reimplement image aliases by @apesternikov in #28
- fix: image variables by @apesternikov in #29
Full Changelog: v0.30.0...v0.31.1
v0.31.0
WORKSPACE snippet
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "rules_gitops",
sha256 = "3b2d4f3b76e746edfa7bd8f4dae527c1bdf00bfcac91ad71148594b85051aafe",
strip_prefix = "rules_gitops-0.31.0",
urls = ["https://github.com/fasterci/rules_gitops/archive/refs/tags/v0.31.0.tar.gz"],
)
What's Changed
- reimplement image aliases by @apesternikov in #28
Full Changelog: v0.30.0...v0.31.0
v0.30.0
WORKSPACE snippet:
http_archive(
name = "rules_gitops",
sha256 = "5435115882ea40e56cece8a01a682e3bd509932e2fcd66538ea7de5554365d69",
strip_prefix = "rules_gitops-0.30.0",
urls = ["https://github.com/fasterci/rules_gitops/archive/v0.30.0.zip"],
)
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")
#setup integration tests
kubeconfig(
name = "k8s_dev",
cluster = "myclustername",
use_host_config = True,
)
What's Changed
- Ap/switch to rules oci by @apesternikov in #1
- expose visibility on tar target of go lang image by @michaelschiff in #8
- Enable stamping for commonLabels and commonAnnotations by @michaelschiff in #9
- import adobe/rules_gitops@0483dedecef451c68… by @apesternikov in #12
- expose tars param of oci_image by @apesternikov in #13
- less bazel runs by @apesternikov in #14
- runfiles inclusion by @michaelschiff in #15
- Ap/it fail fast by @apesternikov in #11
- Ap/bzlmod by @apesternikov in #16
- upgrade aspect bazel lib to v2 by @apesternikov in #17
- add transitions by @apesternikov in #18
- implement K8S_TEST_NAMESPACE by @apesternikov in #20
- more conditions to terminate integration test earlier by @apesternikov in #25
New Contributors
- @apesternikov made their first contribution in #1
- @michaelschiff made their first contribution in #8
Full Changelog: https://github.com/fasterci/rules_gitops/commits/v0.30.0