Skip to content

Commit 3330fde

Browse files
committed
release 23.1.0
1 parent 2b27dd7 commit 3330fde

File tree

11 files changed

+22
-20
lines changed

11 files changed

+22
-20
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.1.0] - 2023-01-23
8+
79
### Changed
810

911
- Updated stackable image versions ([#374]).

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.12.0-nightly"
5-
appVersion: "0.12.0-nightly"
4+
version: "23.1.0"
5+
appVersion: "23.1.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 & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: opa
2-
version: "nightly"
2+
version: "23.1.0"
33
title: Stackable Operator for OPA
44
nav:
55
- modules/getting_started/nav.adoc
66
- modules/ROOT/nav.adoc
7-
prerelease: true
7+
prerelease: false

docs/modules/ROOT/pages/usage.adoc

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

122122
If no resource requests are configured explicitly, the OPA operator uses the following defaults:
123123

docs/modules/getting_started/examples/code/getting_started.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,17 @@ 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 "Installing Operators with Helm"
2424
# tag::helm-install-operators[]
25-
helm install --wait opa-operator stackable-dev/opa-operator --version 0.12.0-nightly
25+
helm install --wait opa-operator stackable-stable/opa-operator --version 23.1.0
2626
# end::helm-install-operators[]
2727
;;
2828
"stackablectl")
2929
echo "installing Operators with stackablectl"
3030
# tag::stackablectl-install-operators[]
31-
stackablectl operator install opa=0.12.0-nightly
31+
stackablectl operator install opa=23.1.0
3232
# end::stackablectl-install-operators[]
3333
;;
3434
*)

docs/modules/getting_started/examples/code/opa.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
spec:
77
image:
88
productVersion: 0.45.0
9-
stackableVersion: 0.3.0
9+
stackableVersion: 23.1.0
1010
servers:
1111
roleGroups:
1212
default:

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.12.0-nightly
6+
opa: 23.1.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.12.0-nightly"
8+
version = "23.1.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.12.0-nightly"
9+
version = "23.1.0"
1010
publish = false
1111

1212
[dependencies]

0 commit comments

Comments
 (0)