Skip to content

Commit 9d1eb43

Browse files
committed
release 23.4.0
1 parent fd8e931 commit 9d1eb43

File tree

10 files changed

+25
-22
lines changed

10 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.4.0] - 2023-04-17
8+
79
### Added
810

911
- Deploy default and support custom affinities ([#217])

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/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.4.0"
5+
appVersion: "23.4.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.4"
4+
prerelease: false

docs/modules/spark-k8s/examples/getting_started/getting_started.sh

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,27 +18,27 @@ 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 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.4.0
31+
helm install --wait secret-operator stackable-stable/secret-operator --version 23.4.0
32+
helm install --wait spark-k8s-operator stackable-stable/spark-k8s-operator --version 23.4.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-
spark-k8s=0.0.0-dev
39+
commons=23.4.0 \
40+
secret=23.4.0 \
41+
spark-k8s=23.4.0
4242
# end::stackablectl-install-operators[]
4343
;;
4444
*)

docs/modules/spark-k8s/pages/usage.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ This has the advantage that one connection configuration can be shared across `S
142142
// The "nightly" version is needed because the "include" directive searches for
143143
// files in the "stable" version by default.
144144
// TODO: remove the "nightly" version after the next platform release (current: 22.09)
145-
include::nightly@home:concepts:stackable_resource_requests.adoc[]
145+
include::home:concepts:stackable_resource_requests.adoc[]
146146

147147
If no resources are configured explicitly, the operator uses the following defaults:
148148

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-
spark: 0.0.0-dev
6+
commons: 23.4.0
7+
secret: 23.4.0
8+
spark: 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-spark-k8s-crd"
77
repository = "https://github.com/stackabletech/spark-k8s-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
@@ -5,7 +5,7 @@ edition = "2021"
55
license = "OSL-3.0"
66
name = "stackable-spark-k8s-operator"
77
repository = "https://github.com/stackabletech/spark-k8s-operator"
8-
version = "0.0.0-dev"
8+
version = "23.4.0"
99
publish = false
1010

1111
[dependencies]

tests/test-definition.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ dimensions:
1010
- "false"
1111
- name: spark
1212
values:
13-
- 3.3.0-stackable23.4.0-rc2
13+
- 3.3.0-stackable23.4.0
1414
- name: ny-tlc-report
1515
values:
1616
- 0.1.0

0 commit comments

Comments
 (0)