From e754961e141da21ba00e8747cb9cc2f330a890f2 Mon Sep 17 00:00:00 2001 From: Andrew Kenworthy Date: Thu, 12 Dec 2024 17:56:11 +0100 Subject: [PATCH] release 24.11.1-rc2 Signed-off-by: Andrew Kenworthy --- CHANGELOG.md | 2 ++ Cargo.lock | 4 ++-- Cargo.nix | 4 ++-- Cargo.toml | 2 +- deploy/helm/superset-operator/Chart.yaml | 4 ++-- .../examples/getting_started/getting_started.sh | 16 ++++++++-------- .../examples/getting_started/install_output.txt | 8 ++++---- .../superset-load-examples-job.yaml | 2 +- docs/templating_vars.yaml | 8 ++++---- tests/release.yaml | 10 +++++----- 10 files changed, 31 insertions(+), 29 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2628fbd2..1e21c61c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## [Unreleased] +## [24.11.1-rc2] - 2024-12-12 + ## [24.11.1-rc1] - 2024-12-06 ### Fixed diff --git a/Cargo.lock b/Cargo.lock index f3d792d5..cb75b930 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2233,7 +2233,7 @@ dependencies = [ [[package]] name = "stackable-superset-crd" -version = "24.11.1-rc1" +version = "24.11.1-rc2" dependencies = [ "indoc", "product-config", @@ -2249,7 +2249,7 @@ dependencies = [ [[package]] name = "stackable-superset-operator" -version = "24.11.1-rc1" +version = "24.11.1-rc2" dependencies = [ "anyhow", "built", diff --git a/Cargo.nix b/Cargo.nix index b6bf2839..2534fed8 100644 --- a/Cargo.nix +++ b/Cargo.nix @@ -6912,7 +6912,7 @@ rec { }; "stackable-superset-crd" = rec { crateName = "stackable-superset-crd"; - version = "24.11.1-rc1"; + version = "24.11.1-rc2"; edition = "2021"; src = lib.cleanSourceWith { filter = sourceFilter; src = ./rust/crd; }; libName = "stackable_superset_crd"; @@ -6970,7 +6970,7 @@ rec { }; "stackable-superset-operator" = rec { crateName = "stackable-superset-operator"; - version = "24.11.1-rc1"; + version = "24.11.1-rc2"; edition = "2021"; crateBin = [ { diff --git a/Cargo.toml b/Cargo.toml index ceb1ee72..2ca44127 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["rust/crd", "rust/operator-binary"] resolver = "2" [workspace.package] -version = "24.11.1-rc1" +version = "24.11.1-rc2" authors = ["Stackable GmbH "] license = "OSL-3.0" edition = "2021" diff --git a/deploy/helm/superset-operator/Chart.yaml b/deploy/helm/superset-operator/Chart.yaml index da64ff4b..5dce1d4e 100644 --- a/deploy/helm/superset-operator/Chart.yaml +++ b/deploy/helm/superset-operator/Chart.yaml @@ -1,8 +1,8 @@ --- apiVersion: v2 name: superset-operator -version: "24.11.1-rc1" -appVersion: "24.11.1-rc1" +version: "24.11.1-rc2" +appVersion: "24.11.1-rc2" description: The Stackable Operator for Apache Superset home: https://github.com/stackabletech/superset-operator maintainers: diff --git a/docs/modules/superset/examples/getting_started/getting_started.sh b/docs/modules/superset/examples/getting_started/getting_started.sh index 0278fe68..24c4d22b 100755 --- a/docs/modules/superset/examples/getting_started/getting_started.sh +++ b/docs/modules/superset/examples/getting_started/getting_started.sh @@ -32,20 +32,20 @@ echo "Updating Helm repo" helm repo update echo "Installing Operators with Helm" # tag::helm-install-operators[] -helm install --wait commons-operator stackable-stable/commons-operator --version 24.11.1-rc1 -helm install --wait secret-operator stackable-stable/secret-operator --version 24.11.1-rc1 -helm install --wait listener-operator stackable-stable/listener-operator --version 24.11.1-rc1 -helm install --wait superset-operator stackable-stable/superset-operator --version 24.11.1-rc1 +helm install --wait commons-operator stackable-stable/commons-operator --version 24.11.1-rc2 +helm install --wait secret-operator stackable-stable/secret-operator --version 24.11.1-rc2 +helm install --wait listener-operator stackable-stable/listener-operator --version 24.11.1-rc2 +helm install --wait superset-operator stackable-stable/superset-operator --version 24.11.1-rc2 # end::helm-install-operators[] ;; "stackablectl") echo "installing Operators with stackablectl" # tag::stackablectl-install-operators[] stackablectl operator install \ - commons=24.11.1-rc1 \ - secret=24.11.1-rc1 \ - listener=24.11.1-rc1 \ - superset=24.11.1-rc1 + commons=24.11.1-rc2 \ + secret=24.11.1-rc2 \ + listener=24.11.1-rc2 \ + superset=24.11.1-rc2 # end::stackablectl-install-operators[] ;; *) diff --git a/docs/modules/superset/examples/getting_started/install_output.txt b/docs/modules/superset/examples/getting_started/install_output.txt index a66cd12a..e2cd1f9e 100644 --- a/docs/modules/superset/examples/getting_started/install_output.txt +++ b/docs/modules/superset/examples/getting_started/install_output.txt @@ -1,4 +1,4 @@ -Installed commons=24.11.1-rc1 operator -Installed secret=24.11.1-rc1 operator -Installed listener=24.11.1-rc1 operator -Installed superset=24.11.1-rc1 operator +Installed commons=24.11.1-rc2 operator +Installed secret=24.11.1-rc2 operator +Installed listener=24.11.1-rc2 operator +Installed superset=24.11.1-rc2 operator diff --git a/docs/modules/superset/examples/getting_started/superset-load-examples-job.yaml b/docs/modules/superset/examples/getting_started/superset-load-examples-job.yaml index 6d3cf5c9..c16424f9 100644 --- a/docs/modules/superset/examples/getting_started/superset-load-examples-job.yaml +++ b/docs/modules/superset/examples/getting_started/superset-load-examples-job.yaml @@ -13,7 +13,7 @@ spec: name: config containers: - name: superset - image: docker.stackable.tech/stackable/superset:4.0.2-stackable24.11.1-rc1 + image: docker.stackable.tech/stackable/superset:4.0.2-stackable24.11.1-rc2 command: [ "/bin/sh", "-c", diff --git a/docs/templating_vars.yaml b/docs/templating_vars.yaml index cfa5fb65..8e3a1e9c 100644 --- a/docs/templating_vars.yaml +++ b/docs/templating_vars.yaml @@ -3,7 +3,7 @@ helm: repo_name: stackable-stable repo_url: https://repo.stackable.tech/repository/helm-stable/ versions: - commons: 24.11.1-rc1 - secret: 24.11.1-rc1 - listener: 24.11.1-rc1 - superset: 24.11.1-rc1 + commons: 24.11.1-rc2 + secret: 24.11.1-rc2 + listener: 24.11.1-rc2 + superset: 24.11.1-rc2 diff --git a/tests/release.yaml b/tests/release.yaml index 2f2667a6..74121683 100644 --- a/tests/release.yaml +++ b/tests/release.yaml @@ -7,12 +7,12 @@ releases: description: Integration test products: commons: - operatorVersion: 24.11.1-rc1 + operatorVersion: 24.11.1-rc2 secret: - operatorVersion: 24.11.1-rc1 + operatorVersion: 24.11.1-rc2 listener: - operatorVersion: 24.11.1-rc1 + operatorVersion: 24.11.1-rc2 druid: - operatorVersion: 24.11.1-rc1 + operatorVersion: 24.11.1-rc2 superset: - operatorVersion: 24.11.1-rc1 + operatorVersion: 24.11.1-rc2