Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,17 @@ All notable changes to this project will be documented in this file.
- `affinity`
- `extraVolumes`
- Replace `lazy_static` with `std::cell::LazyCell` ([#604]).
- Promote Druid `30.0.0` to LTS, deprecate `26.0.0` ([#631]).

### Removed

- test: Remove ZooKeeper 3.8.4 ([#621]).
- Remove Druid `28.0.1` ([#631]).

[#584]: https://github.com/stackabletech/druid-operator/pull/584
[#604]: https://github.com/stackabletech/druid-operator/pull/604
[#621]: https://github.com/stackabletech/druid-operator/pull/621
[#631]: https://github.com/stackabletech/druid-operator/pull/631

## [24.7.0] - 2024-07-24

Expand Down
2 changes: 1 addition & 1 deletion docs/modules/druid/examples/getting_started/druid.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
name: simple-druid
spec:
image:
productVersion: 28.0.1
productVersion: 30.0.0
clusterConfig:
deepStorage:
hdfs:
Expand Down
2 changes: 1 addition & 1 deletion docs/modules/druid/examples/getting_started/druid.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
name: simple-druid
spec:
image:
productVersion: 28.0.1
productVersion: 30.0.0
clusterConfig:
deepStorage:
hdfs:
Expand Down
5 changes: 2 additions & 3 deletions docs/modules/druid/partials/supported-versions.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,5 @@
// This is a separate file, since it is used by both the direct Druid documentation, and the overarching
// Stackable Platform documentation.

- 30.0.0 (experimental)
- 28.0.1 (deprecated)
- 26.0.0 (LTS)
- 30.0.0 (LTS)
- 26.0.0 (deprecated)
2 changes: 1 addition & 1 deletion examples/psql-s3/psql-s3-druid-cluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ metadata:
name: psql-s3-druid
spec:
image:
productVersion: 28.0.1
productVersion: 30.0.0
clusterConfig:
deepStorage:
s3:
Expand Down
2 changes: 1 addition & 1 deletion examples/psql/psql-hdfs-druid-cluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ metadata:
name: psql-druid
spec:
image:
productVersion: 28.0.1
productVersion: 30.0.0
clusterConfig:
deepStorage:
hdfs:
Expand Down
2 changes: 1 addition & 1 deletion examples/tls/tls-druid-cluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ metadata:
name: derby-druid
spec:
image:
productVersion: 28.0.1
productVersion: 30.0.0
clusterConfig:
authentication:
- authenticationClass: druid-mtls-authentication-class
Expand Down
2 changes: 1 addition & 1 deletion rust/crd/src/affinity.rs
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ mod tests {
name: simple-druid
spec:
image:
productVersion: 28.0.1
productVersion: 30.0.0
clusterConfig:
deepStorage:
hdfs:
Expand Down
2 changes: 1 addition & 1 deletion rust/crd/test/resources/resource_merge/druid_cluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ metadata:
uid: test-resource-merge
spec:
image:
productVersion: 28.0.1
productVersion: 30.0.0
clusterConfig:
deepStorage:
hdfs:
Expand Down
2 changes: 1 addition & 1 deletion rust/crd/test/resources/resource_merge/segment_cache.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ metadata:
uid: test-resource-merge
spec:
image:
productVersion: 28.0.1
productVersion: 30.0.0
clusterConfig:
deepStorage:
hdfs:
Expand Down
2 changes: 1 addition & 1 deletion rust/crd/test/resources/role_service/druid_cluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ metadata:
uid: test-uid
spec:
image:
productVersion: 28.0.1
productVersion: 30.0.0
clusterConfig:
deepStorage:
hdfs:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ metadata:
uid: test-resource-merge
spec:
image:
productVersion: 28.0.1
productVersion: 30.0.0
clusterConfig:
deepStorage:
s3:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ metadata:
uid: test-uid
spec:
image:
productVersion: 28.0.1
productVersion: 30.0.0
clusterConfig:
deepStorage:
hdfs:
Expand Down
4 changes: 2 additions & 2 deletions tests/test-definition.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ dimensions:
- name: druid
values:
- 26.0.0
- 28.0.1
- 30.0.0
# To use a custom image, add a comma and the full name after the product version
# - 28.0.1,docker.stackable.tech/sandbox/druid:28.0.1-stackable0.0.0-dev
- name: druid-latest
values:
- 28.0.1
- 30.0.0
# To use a custom image, add a comma and the full name after the product version
# - 28.0.1,docker.stackable.tech/sandbox/druid:28.0.1-stackable0.0.0-dev
- name: zookeeper
Expand Down
Loading