From 7c91442ee79e73439bfa14332cf5a6bb5833df52 Mon Sep 17 00:00:00 2001 From: Nick Larsen Date: Mon, 16 Mar 2026 14:23:05 +0100 Subject: [PATCH] chore: Release 26.3.0 Signed-off-by: Nick Larsen --- CHANGELOG.md | 2 ++ Cargo.lock | 2 +- Cargo.nix | 2 +- Cargo.toml | 2 +- deploy/helm/spark-k8s-operator/Chart.yaml | 4 ++-- .../examples/getting_started/getting_started.sh | 16 ++++++++-------- .../examples/getting_started/install_output.txt | 8 ++++---- docs/templating_vars.yaml | 8 ++++---- tests/release.yaml | 14 +++++++------- 9 files changed, 30 insertions(+), 28 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 129b6fe7..030a67ba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +## [26.3.0] - 2026-03-16 + ## [26.3.0-rc1] - 2026-03-16 ### Added diff --git a/Cargo.lock b/Cargo.lock index 3a42e2c4..4a311340 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2959,7 +2959,7 @@ dependencies = [ [[package]] name = "stackable-spark-k8s-operator" -version = "26.3.0-rc1" +version = "26.3.0" dependencies = [ "anyhow", "built", diff --git a/Cargo.nix b/Cargo.nix index d5e8c6cc..384450bf 100644 --- a/Cargo.nix +++ b/Cargo.nix @@ -9873,7 +9873,7 @@ rec { }; "stackable-spark-k8s-operator" = rec { crateName = "stackable-spark-k8s-operator"; - version = "26.3.0-rc1"; + version = "26.3.0"; edition = "2021"; crateBin = [ { diff --git a/Cargo.toml b/Cargo.toml index eab46fef..c4674fbf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["rust/operator-binary"] resolver = "2" [workspace.package] -version = "26.3.0-rc1" +version = "26.3.0" authors = ["Stackable GmbH "] license = "OSL-3.0" edition = "2021" diff --git a/deploy/helm/spark-k8s-operator/Chart.yaml b/deploy/helm/spark-k8s-operator/Chart.yaml index 3c86376a..ca8d6d08 100644 --- a/deploy/helm/spark-k8s-operator/Chart.yaml +++ b/deploy/helm/spark-k8s-operator/Chart.yaml @@ -1,8 +1,8 @@ --- apiVersion: v2 name: spark-k8s-operator -version: "26.3.0-rc1" -appVersion: "26.3.0-rc1" +version: "26.3.0" +appVersion: "26.3.0" description: The Stackable Operator for Apache Spark-on-Kubernetes home: https://github.com/stackabletech/spark-k8s-operator maintainers: diff --git a/docs/modules/spark-k8s/examples/getting_started/getting_started.sh b/docs/modules/spark-k8s/examples/getting_started/getting_started.sh index 0d25a0b4..7d3b75eb 100755 --- a/docs/modules/spark-k8s/examples/getting_started/getting_started.sh +++ b/docs/modules/spark-k8s/examples/getting_started/getting_started.sh @@ -23,20 +23,20 @@ case "$1" in "helm") echo "Installing Operators with Helm" # tag::helm-install-operators[] -helm install --wait commons-operator oci://oci.stackable.tech/sdp-charts/commons-operator --version 26.3.0-rc1 -helm install --wait secret-operator oci://oci.stackable.tech/sdp-charts/secret-operator --version 26.3.0-rc1 -helm install --wait listener-operator oci://oci.stackable.tech/sdp-charts/listener-operator --version 26.3.0-rc1 -helm install --wait spark-k8s-operator oci://oci.stackable.tech/sdp-charts/spark-k8s-operator --version 26.3.0-rc1 +helm install --wait commons-operator oci://oci.stackable.tech/sdp-charts/commons-operator --version 26.3.0 +helm install --wait secret-operator oci://oci.stackable.tech/sdp-charts/secret-operator --version 26.3.0 +helm install --wait listener-operator oci://oci.stackable.tech/sdp-charts/listener-operator --version 26.3.0 +helm install --wait spark-k8s-operator oci://oci.stackable.tech/sdp-charts/spark-k8s-operator --version 26.3.0 # end::helm-install-operators[] ;; "stackablectl") echo "installing Operators with stackablectl" # tag::stackablectl-install-operators[] stackablectl operator install \ - commons=26.3.0-rc1 \ - secret=26.3.0-rc1 \ - listener=26.3.0-rc1 \ - spark-k8s=26.3.0-rc1 + commons=26.3.0 \ + secret=26.3.0 \ + listener=26.3.0 \ + spark-k8s=26.3.0 # end::stackablectl-install-operators[] ;; *) diff --git a/docs/modules/spark-k8s/examples/getting_started/install_output.txt b/docs/modules/spark-k8s/examples/getting_started/install_output.txt index eef608cb..fdbfe16c 100644 --- a/docs/modules/spark-k8s/examples/getting_started/install_output.txt +++ b/docs/modules/spark-k8s/examples/getting_started/install_output.txt @@ -1,4 +1,4 @@ -Installed commons=26.3.0-rc1 operator -Installed secret=26.3.0-rc1 operator -Installed listener=26.3.0-rc1 operator -Installed spark-k8s=26.3.0-rc1 operator +Installed commons=26.3.0 operator +Installed secret=26.3.0 operator +Installed listener=26.3.0 operator +Installed spark-k8s=26.3.0 operator diff --git a/docs/templating_vars.yaml b/docs/templating_vars.yaml index 1be2bd52..e5f364db 100644 --- a/docs/templating_vars.yaml +++ b/docs/templating_vars.yaml @@ -3,7 +3,7 @@ helm: repo_name: sdp-charts repo_url: oci.stackable.tech versions: - commons: 26.3.0-rc1 - secret: 26.3.0-rc1 - listener: 26.3.0-rc1 - spark: 26.3.0-rc1 + commons: 26.3.0 + secret: 26.3.0 + listener: 26.3.0 + spark: 26.3.0 diff --git a/tests/release.yaml b/tests/release.yaml index 80df0ee3..4c2b4a7f 100644 --- a/tests/release.yaml +++ b/tests/release.yaml @@ -7,16 +7,16 @@ releases: description: Integration test products: commons: - operatorVersion: 26.3.0-rc1 + operatorVersion: 26.3.0 secret: - operatorVersion: 26.3.0-rc1 + operatorVersion: 26.3.0 listener: - operatorVersion: 26.3.0-rc1 + operatorVersion: 26.3.0 zookeeper: - operatorVersion: 26.3.0-rc1 + operatorVersion: 26.3.0 hdfs: - operatorVersion: 26.3.0-rc1 + operatorVersion: 26.3.0 hbase: - operatorVersion: 26.3.0-rc1 + operatorVersion: 26.3.0 spark-k8s: - operatorVersion: 26.3.0-rc1 + operatorVersion: 26.3.0