Skip to content

Commit 22fca26

Browse files
committed
release 23.1.0
1 parent 424f270 commit 22fca26

11 files changed

Lines changed: 31 additions & 29 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## [Unreleased]
44

5+
## [23.1.0] - 2023-01-23
6+
57
### Changed
68

79
- `operator-rs` `0.27.1` -> `0.31.0` ([#306], [#297], [#311])

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/superset-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: superset-operator
4-
version: "0.8.0-nightly"
5-
appVersion: "0.8.0-nightly"
4+
version: "23.1.0"
5+
appVersion: "23.1.0"
66
description: The Stackable Operator for Apache Superset
77
home: https://github.com/stackabletech/superset-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: superset
2-
version: "nightly"
2+
version: "23.1.0"
33
title: Stackable Operator for Apache Superset
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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The default setting is to manually set up users via the Webinterface.
99

1010
=== LDAP
1111

12-
Superset supports xref:nightly@home:concepts:authentication.adoc[authentication] of users against an LDAP server. This requires setting up an xref:nightly@home:concepts:authentication.adoc#authenticationclass[AuthenticationClass] for the LDAP server.
12+
Superset supports xref:home:concepts:authentication.adoc[authentication] of users against an LDAP server. This requires setting up an xref:home:concepts:authentication.adoc#authenticationclass[AuthenticationClass] for the LDAP server.
1313
The AuthenticationClass is then referenced in the SupersetCluster resource as follows:
1414

1515
[source,yaml]
@@ -33,7 +33,7 @@ spec:
3333

3434
Users that log in with LDAP are assigned to a default https://superset.apache.org/docs/security/#roles[Role] which is specified with the `userRegistrationRole` property.
3535

36-
You can follow the xref:nightly@home:tutorials:authentication_with_openldap.adoc[] tutorial to learn how to set up an AuthenticationClass for an LDAP server, as well as consulting the xref:nightly@home:reference:authenticationclass.adoc[] reference.
36+
You can follow the xref:home:tutorials:authentication_with_openldap.adoc[] tutorial to learn how to set up an AuthenticationClass for an LDAP server, as well as consulting the xref:home:reference:authenticationclass.adoc[] reference.
3737

3838
== Authorization
3939
Superset has a concept called `Roles` which allows you to grant user permissions based on roles.
@@ -199,7 +199,7 @@ The Superset operator currently does not support using https://kubernetes.io/doc
199199
// The "nightly" version is needed because the "include" directive searches for
200200
// files in the "stable" version by default.
201201
// TODO: remove the "nightly" version after the next platform release (current: 22.09)
202-
include::nightly@home:concepts:stackable_resource_requests.adoc[]
202+
include::home:concepts:stackable_resource_requests.adoc[]
203203

204204
If no resource requests are configured explicitly, the Superset operator uses the following defaults:
205205

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,24 +16,24 @@ fi
1616

1717
case "$1" in
1818
"helm")
19-
echo "Adding 'stackable-dev' Helm Chart repository"
19+
echo "Adding 'stackable-stable' 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 commons-operator stackable-dev/commons-operator --version 0.5.0-nightly
26-
helm install --wait secret-operator stackable-dev/secret-operator --version 0.7.0-nightly
27-
helm install --wait superset-operator stackable-dev/superset-operator --version 0.8.0-nightly
25+
helm install --wait commons-operator stackable-stable/commons-operator --version 23.1.0
26+
helm install --wait secret-operator stackable-stable/secret-operator --version 23.1.0
27+
helm install --wait superset-operator stackable-stable/superset-operator --version 23.1.0
2828
# end::helm-install-operators[]
2929
;;
3030
"stackablectl")
3131
echo "installing Operators with stackablectl"
3232
# tag::stackablectl-install-operators[]
3333
stackablectl operator install \
34-
commons=0.5.0-nightly \
35-
secret=0.7.0-nightly \
36-
superset=0.8.0-nightly
34+
commons=23.1.0 \
35+
secret=23.1.0 \
36+
superset=23.1.0
3737
# end::stackablectl-install-operators[]
3838
;;
3939
*)

docs/modules/getting_started/examples/code/superset.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: 1.5.1
9-
stackableVersion: 3.0.0
9+
stackableVersion: 23.1.0
1010
credentialsSecret: simple-superset-credentials
1111
loadExamplesOnInit: true
1212
nodes:

docs/templating_vars.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
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-
commons: 0.5.0-nightly
7-
secret: 0.7.0-nightly
8-
superset: 0.8.0-nightly
6+
commons: 23.1.0
7+
secret: 23.1.0
8+
superset: 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-superset-crd"
77
repository = "https://github.com/stackabletech/superset-operator"
8-
version = "0.8.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
@@ -3,7 +3,7 @@ name = "stackable-superset-operator"
33
authors = ["Stackable GmbH <info@stackable.de>"]
44
description = "Stackable Operator for Apache Superset"
55
license = "OSL-3.0"
6-
version = "0.8.0-nightly"
6+
version = "23.1.0"
77
edition = "2021"
88
repository = "https://github.com/stackabletech/superset-operator"
99
publish = false

0 commit comments

Comments
 (0)