Skip to content

Commit 21c735b

Browse files
committed
release 23.4.0
1 parent aa6911c commit 21c735b

File tree

10 files changed

+21
-18
lines changed

10 files changed

+21
-18
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.
44

55
## [Unreleased]
66

7+
## [23.4.0] - 2023-04-17
8+
79
### Added
810

911
- Cluster status conditions ([#428]).

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

deploy/helm/opa-operator/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
apiVersion: v2
33
name: opa-operator
4-
version: "0.0.0-dev"
5-
appVersion: "0.0.0-dev"
4+
version: "23.4.0"
5+
appVersion: "23.4.0"
66
description: The Stackable Operator for OpenPolicyAgent
77
home: https://github.com/stackabletech/opa-operator
88
maintainers:

docs/antora.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
---
22
name: home
3-
version: "nightly"
3+
version: "23.4"
4+
prerelease: false

docs/modules/opa/examples/getting_started/getting_started.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,20 +18,20 @@ case "$1" in
1818
"helm")
1919
echo "Adding 'stackable-dev' Helm Chart repository"
2020
# tag::helm-add-repo[]
21-
helm repo add stackable-dev https://repo.stackable.tech/repository/helm-dev/
21+
helm repo add stackable-stable https://repo.stackable.tech/repository/helm-stable/
2222
# end::helm-add-repo[]
2323
echo "Updating Helm repo"
2424
helm repo update
2525

2626
echo "Installing Operators with Helm"
2727
# tag::helm-install-operators[]
28-
helm install --wait opa-operator stackable-dev/opa-operator --version 0.0.0-dev
28+
helm install --wait opa-operator stackable-stable/opa-operator --version 23.4.0
2929
# end::helm-install-operators[]
3030
;;
3131
"stackablectl")
3232
echo "installing Operators with stackablectl"
3333
# tag::stackablectl-install-operators[]
34-
stackablectl operator install opa=0.0.0-dev
34+
stackablectl operator install opa=23.4.0
3535
# end::stackablectl-install-operators[]
3636
;;
3737
*)

docs/modules/opa/pages/usage.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ The OPA Operator currently does not support using https://kubernetes.io/docs/con
146146
// The "nightly" version is needed because the "include" directive searches for
147147
// files in the "stable" version by default.
148148
// TODO: remove the "nightly" version after the next platform release (current: 22.09)
149-
include::nightly@home:concepts:stackable_resource_requests.adoc[]
149+
include::home:concepts:stackable_resource_requests.adoc[]
150150

151151
If no resource requests are configured explicitly, the OPA operator uses the following defaults:
152152

docs/templating_vars.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
helm:
3-
repo_name: stackable-dev
4-
repo_url: https://repo.stackable.tech/repository/helm-dev/
3+
repo_name: stackable-stable
4+
repo_url: https://repo.stackable.tech/repository/helm-stable/
55
versions:
6-
opa: 0.0.0-dev
6+
opa: 23.4.0

rust/crd/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2021"
55
license = "OSL-3.0"
66
name = "stackable-opa-crd"
77
repository = "https://github.com/stackabletech/opa-operator"
8-
version = "0.0.0-dev"
8+
version = "23.4.0"
99
publish = false
1010

1111
[dependencies]

rust/operator-binary/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
license = "OSL-3.0"
77
name = "stackable-opa-operator"
88
repository = "https://github.com/stackabletech/opa-operator"
9-
version = "0.0.0-dev"
9+
version = "23.4.0"
1010
publish = false
1111

1212
[dependencies]

tests/test-definition.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
dimensions:
33
- name: opa
44
values:
5-
- 0.37.2-stackable23.4.0-rc2
6-
- 0.41.0-stackable23.4.0-rc2
7-
- 0.45.0-stackable23.4.0-rc2
5+
- 0.37.2-stackable23.4.0
6+
- 0.41.0-stackable23.4.0
7+
- 0.45.0-stackable23.4.0
88
- name: opa-latest
99
values:
10-
- 0.45.0-stackable23.4.0-rc2
10+
- 0.45.0-stackable23.4.0
1111
tests:
1212
- name: smoke
1313
dimensions:

0 commit comments

Comments
 (0)