Skip to content

Commit 1c6cf16

Browse files
authored
chore: Release 25.7.0-rc1 (#738)
Signed-off-by: Nick Larsen <[email protected]>
1 parent 82e51e9 commit 1c6cf16

File tree

12 files changed

+153
-150
lines changed

12 files changed

+153
-150
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+
## [25.7.0-rc1] - 2025-07-18
8+
79
### Added
810

911
- Adds new telemetry CLI arguments and environment variables ([#714]).

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 = "25.7.0-rc1"
77
authors = ["Stackable GmbH <[email protected]>"]
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: "25.7.0-rc1"
5+
appVersion: "25.7.0-rc1"
66
description: The Stackable Operator for Apache Druid
77
home: https://github.com/stackabletech/druid-operator
88
maintainers:

deploy/helm/druid-operator/crds/crds.yaml

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

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: "25.7"
4+
prerelease: false

docs/modules/druid/examples/getting_started/druid.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ spec:
2323
default:
2424
replicas: 1
2525
roleConfig:
26-
listenerClass: external-stable # This exposes this role outside of Kubernetes. Remove this configuration if this is not desired
26+
listenerClass: external-stable # This exposes your Stacklet outside of Kubernetes. Remove this configuration if this is not desired
2727
coordinators:
2828
roleGroups:
2929
default:
3030
replicas: 1
3131
roleConfig:
32-
listenerClass: external-stable # This exposes this role outside of Kubernetes. Remove this configuration if this is not desired
32+
listenerClass: external-stable # This exposes your Stacklet outside of Kubernetes. Remove this configuration if this is not desired
3333
historicals:
3434
roleGroups:
3535
default:
@@ -43,7 +43,7 @@ spec:
4343
default:
4444
replicas: 1
4545
roleConfig:
46-
listenerClass: external-stable # This exposes this role outside of Kubernetes. Remove this configuration if this is not desired
46+
listenerClass: external-stable # This exposes your Stacklet outside of Kubernetes. Remove this configuration if this is not desired
4747
---
4848
apiVersion: v1
4949
kind: Secret

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

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -26,24 +26,24 @@ case "$1" in
2626
"helm")
2727
echo "Installing Operators with Helm"
2828
# tag::helm-install-operators[]
29-
helm install --wait commons-operator oci://oci.stackable.tech/sdp-charts/commons-operator --version 0.0.0-dev
30-
helm install --wait secret-operator oci://oci.stackable.tech/sdp-charts/secret-operator --version 0.0.0-dev
31-
helm install --wait listener-operator oci://oci.stackable.tech/sdp-charts/listener-operator --version 0.0.0-dev
32-
helm install --wait zookeeper-operator oci://oci.stackable.tech/sdp-charts/zookeeper-operator --version 0.0.0-dev
33-
helm install --wait hdfs-operator oci://oci.stackable.tech/sdp-charts/hdfs-operator --version 0.0.0-dev
34-
helm install --wait druid-operator oci://oci.stackable.tech/sdp-charts/druid-operator --version 0.0.0-dev
29+
helm install --wait commons-operator oci://oci.stackable.tech/sdp-charts/commons-operator --version 25.7.0-rc1
30+
helm install --wait secret-operator oci://oci.stackable.tech/sdp-charts/secret-operator --version 25.7.0-rc1
31+
helm install --wait listener-operator oci://oci.stackable.tech/sdp-charts/listener-operator --version 25.7.0-rc1
32+
helm install --wait zookeeper-operator oci://oci.stackable.tech/sdp-charts/zookeeper-operator --version 25.7.0-rc1
33+
helm install --wait hdfs-operator oci://oci.stackable.tech/sdp-charts/hdfs-operator --version 25.7.0-rc1
34+
helm install --wait druid-operator oci://oci.stackable.tech/sdp-charts/druid-operator --version 25.7.0-rc1
3535
# end::helm-install-operators[]
3636
;;
3737
"stackablectl")
3838
echo "installing Operators with stackablectl"
3939
# tag::stackablectl-install-operators[]
4040
stackablectl operator install \
41-
commons=0.0.0-dev \
42-
secret=0.0.0-dev \
43-
listener=0.0.0-dev \
44-
zookeeper=0.0.0-dev \
45-
hdfs=0.0.0-dev \
46-
druid=0.0.0-dev
41+
commons=25.7.0-rc1 \
42+
secret=25.7.0-rc1 \
43+
listener=25.7.0-rc1 \
44+
zookeeper=25.7.0-rc1 \
45+
hdfs=25.7.0-rc1 \
46+
druid=25.7.0-rc1
4747
# end::stackablectl-install-operators[]
4848
;;
4949
*)
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=25.7.0-rc1 operator
2+
Installed secret=25.7.0-rc1 operator
3+
Installed listener=25.7.0-rc1 operator
4+
Installed zookeeper=25.7.0-rc1 operator
5+
Installed hdfs=25.7.0-rc1 operator
6+
Installed druid=25.7.0-rc1 operator

0 commit comments

Comments
 (0)