diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ad6f524..dd3831d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 @@ -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 diff --git a/docs/modules/druid/examples/getting_started/druid.yaml b/docs/modules/druid/examples/getting_started/druid.yaml index 8ffd4a3a..54a0127b 100644 --- a/docs/modules/druid/examples/getting_started/druid.yaml +++ b/docs/modules/druid/examples/getting_started/druid.yaml @@ -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: diff --git a/docs/modules/druid/examples/getting_started/druid.yaml.j2 b/docs/modules/druid/examples/getting_started/druid.yaml.j2 index 9e3a411b..50c019fb 100644 --- a/docs/modules/druid/examples/getting_started/druid.yaml.j2 +++ b/docs/modules/druid/examples/getting_started/druid.yaml.j2 @@ -5,7 +5,7 @@ metadata: name: simple-druid spec: image: - productVersion: 24.0.0 + productVersion: 26.0.0 stackableVersion: {{ versions.druid }} clusterConfig: deepStorage: diff --git a/docs/modules/druid/partials/supported-versions.adoc b/docs/modules/druid/partials/supported-versions.adoc index 280f854b..b6a89e8d 100644 --- a/docs/modules/druid/partials/supported-versions.adoc +++ b/docs/modules/druid/partials/supported-versions.adoc @@ -4,3 +4,4 @@ - 0.23.0 - 24.0.0 +- 26.0.0 diff --git a/examples/psql-s3/psql-s3-druid-cluster.yaml b/examples/psql-s3/psql-s3-druid-cluster.yaml index 784ef3d4..ff7be4dd 100644 --- a/examples/psql-s3/psql-s3-druid-cluster.yaml +++ b/examples/psql-s3/psql-s3-druid-cluster.yaml @@ -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: diff --git a/examples/psql/psql-hdfs-druid-cluster.yaml b/examples/psql/psql-hdfs-druid-cluster.yaml index 551bd79b..eca6b797 100644 --- a/examples/psql/psql-hdfs-druid-cluster.yaml +++ b/examples/psql/psql-hdfs-druid-cluster.yaml @@ -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: diff --git a/examples/tls/tls-druid-cluster.yaml b/examples/tls/tls-druid-cluster.yaml index 028d4b4e..f1fd730a 100644 --- a/examples/tls/tls-druid-cluster.yaml +++ b/examples/tls/tls-druid-cluster.yaml @@ -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: diff --git a/rust/crd/src/affinity.rs b/rust/crd/src/affinity.rs index 143bf73b..0dd4e327 100644 --- a/rust/crd/src/affinity.rs +++ b/rust/crd/src/affinity.rs @@ -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: @@ -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: diff --git a/rust/crd/test/resources/resource_merge/druid_cluster.yaml b/rust/crd/test/resources/resource_merge/druid_cluster.yaml index 1dc6444d..85955396 100644 --- a/rust/crd/test/resources/resource_merge/druid_cluster.yaml +++ b/rust/crd/test/resources/resource_merge/druid_cluster.yaml @@ -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: diff --git a/rust/crd/test/resources/resource_merge/segment_cache.yaml b/rust/crd/test/resources/resource_merge/segment_cache.yaml index 7b7bf39b..91888348 100644 --- a/rust/crd/test/resources/resource_merge/segment_cache.yaml +++ b/rust/crd/test/resources/resource_merge/segment_cache.yaml @@ -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: diff --git a/rust/crd/test/resources/role_service/druid_cluster.yaml b/rust/crd/test/resources/role_service/druid_cluster.yaml index 40c4fb75..4292ecf6 100644 --- a/rust/crd/test/resources/role_service/druid_cluster.yaml +++ b/rust/crd/test/resources/role_service/druid_cluster.yaml @@ -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: diff --git a/rust/operator-binary/test/resources/druid_controller/segment_cache.yaml b/rust/operator-binary/test/resources/druid_controller/segment_cache.yaml index d42ecade..fed7965f 100644 --- a/rust/operator-binary/test/resources/druid_controller/segment_cache.yaml +++ b/rust/operator-binary/test/resources/druid_controller/segment_cache.yaml @@ -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: diff --git a/tests/test-definition.yaml b/tests/test-definition.yaml index 39b36dd6..4d363c23 100644 --- a/tests/test-definition.yaml +++ b/tests/test-definition.yaml @@ -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