Skip to content

[Merged by Bors] - Support druid 26.0.0 #442

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 4 commits into from
Closed
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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ All notable changes to this project will be documented in this file.

- Generate OLM bundle for Release 23.4.0 ([#436]).
- Missing CRD defaults for `status.conditions` field ([#439]).
- Support for Druid `26.0.0` ([#442]).

### Changed

Expand All @@ -19,6 +20,7 @@ All notable changes to this project will be documented in this file.
[#435]: https://github.com/stackabletech/druid-operator/pull/435
[#436]: https://github.com/stackabletech/druid-operator/pull/436
[#439]: https://github.com/stackabletech/druid-operator/pull/439
[#442]: https://github.com/stackabletech/druid-operator/pull/442

## [23.4.0] - 2023-04-17

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: 24.0.0
productVersion: 26.0.0
stackableVersion: 0.0.0-dev
clusterConfig:
deepStorage:
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: 24.0.0
productVersion: 26.0.0
stackableVersion: {{ versions.druid }}
clusterConfig:
deepStorage:
Expand Down
1 change: 1 addition & 0 deletions docs/modules/druid/partials/supported-versions.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@

- 0.23.0
- 24.0.0
- 26.0.0
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 @@ -46,7 +46,7 @@ metadata:
name: psql-s3-druid
spec:
image:
productVersion: 24.0.0
productVersion: 26.0.0
stackableVersion: 0.0.0-dev
clusterConfig:
deepStorage:
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 @@ -58,7 +58,7 @@ metadata:
name: psql-druid
spec:
image:
productVersion: 24.0.0
productVersion: 26.0.0
stackableVersion: 0.0.0-dev
clusterConfig:
deepStorage:
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 @@ -80,7 +80,7 @@ metadata:
name: derby-druid
spec:
image:
productVersion: 24.0.0
productVersion: 26.0.0
stackableVersion: 0.0.0-dev
clusterConfig:
authentication:
Expand Down
8 changes: 4 additions & 4 deletions rust/crd/src/affinity.rs
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,8 @@ mod tests {
name: simple-druid
spec:
image:
productVersion: 24.0.0
stackableVersion: "23.1"
productVersion: 26.0.0
stackableVersion: "0.0.0-dev"
clusterConfig:
deepStorage:
hdfs:
Expand Down Expand Up @@ -343,8 +343,8 @@ mod tests {
name: simple-druid
spec:
image:
productVersion: 24.0.0
stackableVersion: "23.1"
productVersion: 26.0.0
stackableVersion: "0.0.0-dev"
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: 24.0.0
productVersion: 26.0.0
stackableVersion: 0.0.0-dev
clusterConfig:
deepStorage:
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: 24.0.0
productVersion: 26.0.0
stackableVersion: 0.0.0-dev
clusterConfig:
deepStorage:
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: 24.0.0
productVersion: 26.0.0
stackableVersion: 0.0.0-dev
clusterConfig:
deepStorage:
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: 24.0.0
productVersion: 26.0.0
stackableVersion: 0.0.0-dev
clusterConfig:
deepStorage:
Expand Down
3 changes: 2 additions & 1 deletion tests/test-definition.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@ dimensions:
values:
- 0.23.0-stackable0.0.0-dev
- 24.0.0-stackable0.0.0-dev
- 26.0.0-stackable0.0.0-dev
- name: druid-latest
values:
- 24.0.0-stackable0.0.0-dev
- 26.0.0-stackable0.0.0-dev
- name: zookeeper
values:
- 3.7.0-stackable0.0.0-dev
Expand Down