Skip to content

Commit 32b5285

Browse files
authored
chore: Release 26.3.0-rc1 (#803)
Signed-off-by: Nick Larsen <nick.larsen@stackable.tech>
1 parent aad813f commit 32b5285

File tree

11 files changed

+159
-156
lines changed

11 files changed

+159
-156
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+
## [26.3.0-rc1] - 2026-03-16
8+
79
### Added
810

911
- Add conversion webhook ([#790]).

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.nix

Lines changed: 1 addition & 1 deletion
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
@@ -3,7 +3,7 @@ members = ["rust/operator-binary"]
33
resolver = "2"
44

55
[workspace.package]
6-
version = "0.0.0-dev"
6+
version = "26.3.0-rc1"
77
authors = ["Stackable GmbH <info@stackable.tech>"]
88
license = "OSL-3.0"
99
edition = "2021"

deploy/helm/druid-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: druid-operator
4-
version: "0.0.0-dev"
5-
appVersion: "0.0.0-dev"
4+
version: "26.3.0-rc1"
5+
appVersion: "26.3.0-rc1"
66
description: The Stackable Operator for Apache Druid
77
home: https://github.com/stackabletech/druid-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: "26.3"
4+
prerelease: false

docs/modules/druid/examples/getting_started/getting_started.sh

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -29,24 +29,24 @@ case "$1" in
2929
"helm")
3030
echo "Installing Operators with Helm"
3131
# tag::helm-install-operators[]
32-
helm install --wait commons-operator oci://oci.stackable.tech/sdp-charts/commons-operator --version 0.0.0-dev
33-
helm install --wait secret-operator oci://oci.stackable.tech/sdp-charts/secret-operator --version 0.0.0-dev
34-
helm install --wait listener-operator oci://oci.stackable.tech/sdp-charts/listener-operator --version 0.0.0-dev --set preset=stable-nodes
35-
helm install --wait zookeeper-operator oci://oci.stackable.tech/sdp-charts/zookeeper-operator --version 0.0.0-dev
36-
helm install --wait hdfs-operator oci://oci.stackable.tech/sdp-charts/hdfs-operator --version 0.0.0-dev
37-
helm install --wait druid-operator oci://oci.stackable.tech/sdp-charts/druid-operator --version 0.0.0-dev
32+
helm install --wait commons-operator oci://oci.stackable.tech/sdp-charts/commons-operator --version 26.3.0-rc1
33+
helm install --wait secret-operator oci://oci.stackable.tech/sdp-charts/secret-operator --version 26.3.0-rc1
34+
helm install --wait listener-operator oci://oci.stackable.tech/sdp-charts/listener-operator --version 26.3.0-rc1 --set preset=stable-nodes
35+
helm install --wait zookeeper-operator oci://oci.stackable.tech/sdp-charts/zookeeper-operator --version 26.3.0-rc1
36+
helm install --wait hdfs-operator oci://oci.stackable.tech/sdp-charts/hdfs-operator --version 26.3.0-rc1
37+
helm install --wait druid-operator oci://oci.stackable.tech/sdp-charts/druid-operator --version 26.3.0-rc1
3838
# end::helm-install-operators[]
3939
;;
4040
"stackablectl")
4141
echo "installing Operators with stackablectl"
4242
# tag::stackablectl-install-operators[]
4343
stackablectl operator install \
44-
commons=0.0.0-dev \
45-
secret=0.0.0-dev \
46-
listener=0.0.0-dev \
47-
zookeeper=0.0.0-dev \
48-
hdfs=0.0.0-dev \
49-
druid=0.0.0-dev
44+
commons=26.3.0-rc1 \
45+
secret=26.3.0-rc1 \
46+
listener=26.3.0-rc1 \
47+
zookeeper=26.3.0-rc1 \
48+
hdfs=26.3.0-rc1 \
49+
druid=26.3.0-rc1
5050
# end::stackablectl-install-operators[]
5151
;;
5252
*)
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
Installed commons=0.0.0-dev operator
2-
Installed secret=0.0.0-dev operator
3-
Installed listener=0.0.0-dev operator
4-
Installed zookeeper=0.0.0-dev operator
5-
Installed hdfs=0.0.0-dev operator
6-
Installed druid=0.0.0-dev operator
1+
Installed commons=26.3.0-rc1 operator
2+
Installed secret=26.3.0-rc1 operator
3+
Installed listener=26.3.0-rc1 operator
4+
Installed zookeeper=26.3.0-rc1 operator
5+
Installed hdfs=26.3.0-rc1 operator
6+
Installed druid=26.3.0-rc1 operator

docs/templating_vars.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ helm:
33
repo_name: sdp-charts
44
repo_url: oci.stackable.tech
55
versions:
6-
commons: 0.0.0-dev
7-
secret: 0.0.0-dev
8-
listener: 0.0.0-dev
9-
zookeeper: 0.0.0-dev
10-
hdfs: 0.0.0-dev
11-
druid: 0.0.0-dev
6+
commons: 26.3.0-rc1
7+
secret: 26.3.0-rc1
8+
listener: 26.3.0-rc1
9+
zookeeper: 26.3.0-rc1
10+
hdfs: 26.3.0-rc1
11+
druid: 26.3.0-rc1
1212
postgresql: 16.5.0

extra/crds.yaml

Lines changed: 119 additions & 119 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)