Skip to content

Commit 8e126f0

Browse files
committed
release 23.11.0
1 parent 119bbea commit 8e126f0

9 files changed

Lines changed: 28 additions & 25 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.11.0] - 2023-11-24
6+
57
### Added
68

79
- Default stackableVersion to operator version ([#390]).

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.

Cargo.toml

Lines changed: 1 addition & 1 deletion
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/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.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 Apache Superset
77
home: https://github.com/stackabletech/superset-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.11"
4+
prerelease: false

docs/modules/superset/examples/getting_started/getting_started.sh

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -18,28 +18,28 @@ cd "$(dirname "$0")"
1818

1919
case "$1" in
2020
"helm")
21-
echo "Adding 'stackable-dev' Helm Chart repository"
21+
echo "Adding 'stackable-stable' Helm Chart repository"
2222
# tag::helm-add-repo[]
23-
helm repo add stackable-dev https://repo.stackable.tech/repository/helm-dev/
23+
helm repo add stackable-stable https://repo.stackable.tech/repository/helm-stable/
2424
# end::helm-add-repo[]
2525
echo "Updating Helm repo"
2626
helm repo update
2727
echo "Installing Operators with Helm"
2828
# tag::helm-install-operators[]
29-
helm install --wait commons-operator stackable-dev/commons-operator --version 0.0.0-dev
30-
helm install --wait secret-operator stackable-dev/secret-operator --version 0.0.0-dev
31-
helm install --wait listener-operator stackable-dev/listener-operator --version 0.0.0-dev
32-
helm install --wait superset-operator stackable-dev/superset-operator --version 0.0.0-dev
29+
helm install --wait commons-operator stackable-stable/commons-operator --version 23.11.0
30+
helm install --wait secret-operator stackable-stable/secret-operator --version 23.11.0
31+
helm install --wait listener-operator stackable-stable/listener-operator --version 23.11.0
32+
helm install --wait superset-operator stackable-stable/superset-operator --version 23.11.0
3333
# end::helm-install-operators[]
3434
;;
3535
"stackablectl")
3636
echo "installing Operators with stackablectl"
3737
# tag::stackablectl-install-operators[]
3838
stackablectl operator install \
39-
commons=0.0.0-dev \
40-
secret=0.0.0-dev \
41-
listener=0.0.0-dev \
42-
superset=0.0.0-dev
39+
commons=23.11.0 \
40+
secret=23.11.0 \
41+
listener=23.11.0 \
42+
superset=23.11.0
4343
# end::stackablectl-install-operators[]
4444
;;
4545
*)

docs/modules/superset/examples/getting_started/superset-load-examples-job.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ spec:
1313
name: config
1414
containers:
1515
- name: superset
16-
image: docker.stackable.tech/stackable/superset:3.0.1-stackable0.0.0-dev
16+
image: docker.stackable.tech/stackable/superset:3.0.1-stackable23.11.0
1717
command: [
1818
"/bin/sh",
1919
"-c",

docs/modules/superset/pages/usage-guide/security.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The default setting is to manually set up users via the Webinterface.
88

99
=== LDAP
1010

11-
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.
11+
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.
1212
The AuthenticationClass is then referenced in the SupersetCluster resource as follows:
1313

1414
[source,yaml]
@@ -31,7 +31,7 @@ spec:
3131

3232
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.
3333

34-
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.
34+
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.
3535

3636
=== [[oauth]]OAuth
3737

docs/templating_vars.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
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.0.0-dev
7-
secret: 0.0.0-dev
8-
listener: 0.0.0-dev
9-
superset: 0.0.0-dev
6+
commons: 23.11.0
7+
secret: 23.11.0
8+
listener: 23.11.0
9+
superset: 23.11.0

0 commit comments

Comments
 (0)