Skip to content

Commit 0fcfab2

Browse files
committed
release 23.11.0
1 parent 7a0178c commit 0fcfab2

File tree

7 files changed

+15
-12
lines changed

7 files changed

+15
-12
lines changed

CHANGELOG.md

+2
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.11.0] - 2023-11-24
8+
79
### Added
810

911
- Default stackableVersion to operator version ([#467]).

Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
members = ["rust/crd", "rust/operator-binary"]
33

44
[workspace.package]
5-
version = "0.0.0-dev"
5+
version = "23.11.0"
66
authors = ["Stackable GmbH <info@stackable.tech>"]
77
license = "OSL-3.0"
88
edition = "2021"

deploy/helm/opa-operator/Chart.yaml

+2-2
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.11.0"
5+
appVersion: "23.11.0"
66
description: The Stackable Operator for OpenPolicyAgent
77
home: https://github.com/stackabletech/opa-operator
88
maintainers:

docs/antora.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
---
22
name: home
3-
version: "nightly"
3+
version: "23.11"
4+
prerelease: false

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

+3-3
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.11.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.11.0
3535
# end::stackablectl-install-operators[]
3636
;;
3737
*)

docs/templating_vars.yaml

+3-3
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.11.0

0 commit comments

Comments
 (0)