Skip to content

Commit 9b682a1

Browse files
committed
release 23.11.0
1 parent 3037974 commit 9b682a1

File tree

7 files changed

+25
-22
lines changed

7 files changed

+25
-22
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.
44

55
## [Unreleased]
66

7+
## [23.11.0] - 2023-11-24
8+
79
### Added
810

911
- Default stackableVersion to operator version. It is recommended to remove `spec.image.stackableVersion` from your custom resources ([#267], [#268]).

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/spark-k8s-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: spark-k8s-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 Spark-on-Kubernetes
77
home: https://github.com/stackabletech/spark-k8s-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/spark-k8s/examples/getting_started/getting_started.sh

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -18,29 +18,29 @@ 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

2828
echo "Installing Operators with Helm"
2929
# tag::helm-install-operators[]
30-
helm install --wait commons-operator stackable-dev/commons-operator --version 0.0.0-dev
31-
helm install --wait secret-operator stackable-dev/secret-operator --version 0.0.0-dev
32-
helm install --wait listener-operator stackable-dev/listener-operator --version 0.0.0-dev
33-
helm install --wait spark-k8s-operator stackable-dev/spark-k8s-operator --version 0.0.0-dev
30+
helm install --wait commons-operator stackable-stable/commons-operator --version 23.11.0
31+
helm install --wait secret-operator stackable-stable/secret-operator --version 23.11.0
32+
helm install --wait listener-operator stackable-stable/listener-operator --version 23.11.0
33+
helm install --wait spark-k8s-operator stackable-stable/spark-k8s-operator --version 23.11.0
3434
# end::helm-install-operators[]
3535
;;
3636
"stackablectl")
3737
echo "installing Operators with stackablectl"
3838
# tag::stackablectl-install-operators[]
3939
stackablectl operator install \
40-
commons=0.0.0-dev \
41-
secret=0.0.0-dev \
42-
listener=0.0.0-dev \
43-
spark-k8s=0.0.0-dev
40+
commons=23.11.0 \
41+
secret=23.11.0 \
42+
listener=23.11.0 \
43+
spark-k8s=23.11.0
4444
# end::stackablectl-install-operators[]
4545
;;
4646
*)

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-
spark: 0.0.0-dev
6+
commons: 23.11.0
7+
secret: 23.11.0
8+
listener: 23.11.0
9+
spark: 23.11.0

0 commit comments

Comments
 (0)