diff --git a/CHANGELOG.md b/CHANGELOG.md index b51196a5..d5783594 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,11 @@ All notable changes to this project will be documented in this file. ### Added - Helm: Allow Pod `priorityClassName` to be configured ([#752]). +- Add support for `34.0.0` ([#755]). + +### Changed + +- Deprecate support for `33.0.0` ([#755]). ### Fixed @@ -18,8 +23,13 @@ All notable changes to this project will be documented in this file. We now correctly handle multiple certificates for both cases. See [this GitHub issue](https://github.com/stackabletech/issues/issues/764) for details +### Removed + +- Remove support for `31.0.1` ([#755]). + [#752]: https://github.com/stackabletech/druid-operator/pull/752 [#753]: https://github.com/stackabletech/druid-operator/pull/753 +[#755]: https://github.com/stackabletech/druid-operator/pull/755 ## [25.7.0] - 2025-07-23 diff --git a/docs/modules/druid/examples/getting_started/druid.yaml b/docs/modules/druid/examples/getting_started/druid.yaml index 981f69b4..e7762c54 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: 33.0.0 + productVersion: 34.0.0 clusterConfig: zookeeperConfigMapName: simple-druid-znode deepStorage: diff --git a/docs/modules/druid/examples/getting_started/druid.yaml.j2 b/docs/modules/druid/examples/getting_started/druid.yaml.j2 index 981f69b4..e7762c54 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: 33.0.0 + productVersion: 34.0.0 clusterConfig: zookeeperConfigMapName: simple-druid-znode deepStorage: diff --git a/docs/modules/druid/partials/supported-versions.adoc b/docs/modules/druid/partials/supported-versions.adoc index d1cf17eb..30139c92 100644 --- a/docs/modules/druid/partials/supported-versions.adoc +++ b/docs/modules/druid/partials/supported-versions.adoc @@ -2,6 +2,6 @@ // This is a separate file, since it is used by both the direct Druid documentation, and the overarching // Stackable Platform documentation. -- 33.0.0 -- 31.0.1 (deprecated) +- 34.0.0 +- 33.0.0 (deprecated) - 30.0.1 (LTS) diff --git a/tests/templates/kuttl/overrides/20-install-druid.yaml.j2 b/tests/templates/kuttl/overrides/20-install-druid.yaml.j2 index 2c3557ba..8f6e45c3 100644 --- a/tests/templates/kuttl/overrides/20-install-druid.yaml.j2 +++ b/tests/templates/kuttl/overrides/20-install-druid.yaml.j2 @@ -11,6 +11,7 @@ spec: {% else %} productVersion: "{{ test_scenario['values']['druid-latest'] }}" {% endif %} + pullPolicy: IfNotPresent clusterConfig: deepStorage: hdfs: diff --git a/tests/test-definition.yaml b/tests/test-definition.yaml index 47f97425..eb1086de 100644 --- a/tests/test-definition.yaml +++ b/tests/test-definition.yaml @@ -14,13 +14,13 @@ dimensions: - name: druid values: - 30.0.1 - - 31.0.1 - 33.0.0 + - 34.0.0 # To use a custom image, add a comma and the full name after the product version # - 30.0.0,oci.stackable.tech/sdp/druid:30.0.0-stackable0.0.0-dev - name: druid-latest values: - - 33.0.0 + - 34.0.0 # To use a custom image, add a comma and the full name after the product version # - 30.0.0,oci.stackable.tech/sdp/druid:30.0.0-stackable0.0.0-dev - name: zookeeper