Skip to content

Commit 7c30792

Browse files
committed
release 23.4.0
1 parent 84d1a00 commit 7c30792

10 files changed

Lines changed: 29 additions & 26 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.4.0] - 2023-04-17
6+
57
### Added
68

79
- Log aggregation added ([#326]).

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.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 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.4"
4+
prerelease: false

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,26 +18,26 @@ 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 superset-operator stackable-dev/superset-operator --version 0.0.0-dev
29+
helm install --wait commons-operator stackable-stable/commons-operator --version 23.4.0
30+
helm install --wait secret-operator stackable-stable/secret-operator --version 23.4.0
31+
helm install --wait superset-operator stackable-stable/superset-operator --version 23.4.0
3232
# end::helm-install-operators[]
3333
;;
3434
"stackablectl")
3535
echo "installing Operators with stackablectl"
3636
# tag::stackablectl-install-operators[]
3737
stackablectl operator install \
38-
commons=0.0.0-dev \
39-
secret=0.0.0-dev \
40-
superset=0.0.0-dev
38+
commons=23.4.0 \
39+
secret=23.4.0 \
40+
superset=23.4.0
4141
# end::stackablectl-install-operators[]
4242
;;
4343
*)

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]
@@ -32,7 +32,7 @@ spec:
3232

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

35-
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.
35+
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.
3636

3737
== [[authorization]]Authorization
3838
Superset has a concept called `Roles` which allows you to grant user permissions based on roles.

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.0.0-dev
7-
secret: 0.0.0-dev
8-
superset: 0.0.0-dev
6+
commons: 23.4.0
7+
secret: 23.4.0
8+
superset: 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-superset-crd"
77
repository = "https://github.com/stackabletech/superset-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
@@ -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.0.0-dev"
6+
version = "23.4.0"
77
edition = "2021"
88
repository = "https://github.com/stackabletech/superset-operator"
99
publish = false

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: superset
44
values:
5-
- 1.3.2-stackable23.4.0-rc2
6-
- 1.4.1-stackable23.4.0-rc2
7-
- 1.5.1-stackable23.4.0-rc2
5+
- 1.3.2-stackable23.4.0
6+
- 1.4.1-stackable23.4.0
7+
- 1.5.1-stackable23.4.0
88
- name: superset-latest
99
values:
10-
- 1.5.1-stackable23.4.0-rc2
10+
- 1.5.1-stackable23.4.0
1111
- name: ldap-authentication
1212
values:
1313
- no-tls

0 commit comments

Comments
 (0)