Skip to content

chore: Add support for 33.0.0, remove support for 30.0.0, deprecate 31.0.1 #722

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

Merged
merged 3 commits into from
May 15, 2025
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ All notable changes to this project will be documented in this file.
- Use `--file-log-max-files` (or `FILE_LOG_MAX_FILES`) to limit the number of log files kept.
- Use `--file-log-rotation-period` (or `FILE_LOG_ROTATION_PERIOD`) to configure the frequency of rotation.
- Use `--console-log-format` (or `CONSOLE_LOG_FORMAT`) to set the format to `plain` (default) or `json`.
- Add support for `33.0.0` ([#722]).

### Changed

Expand All @@ -27,6 +28,7 @@ All notable changes to this project will be documented in this file.
- The `runAsUser` and `runAsGroup` fields will not be set anymore by the operator
- The defaults from the docker images itself will now apply, which will be different from 1000/0 going forward
- This is marked as breaking because tools and policies might exist, which require these fields to be set
- Deprecate support for `31.0.1` ([#722]).

### Fixed

Expand All @@ -36,6 +38,7 @@ All notable changes to this project will be documented in this file.
### Removed

- test: ZooKeeper 3.9.2 removed ([#716]).
- Remove support for `30.0.0` ([#722]).

[#703]: https://github.com/stackabletech/druid-operator/pull/703
[#704]: https://github.com/stackabletech/druid-operator/pull/704
Expand All @@ -46,6 +49,7 @@ All notable changes to this project will be documented in this file.
[#718]: https://github.com/stackabletech/druid-operator/pull/718
[#719]: https://github.com/stackabletech/druid-operator/pull/719
[#721]: https://github.com/stackabletech/druid-operator/pull/721
[#722]: https://github.com/stackabletech/druid-operator/pull/722

## [25.3.0] - 2025-03-21

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: 31.0.1
productVersion: 33.0.0
clusterConfig:
listenerClass: external-stable # This exposes your Stacklet outside of Kubernetes. Remove this configuration if this is not desired
zookeeperConfigMapName: simple-druid-znode
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: 31.0.1
productVersion: 33.0.0
clusterConfig:
listenerClass: external-stable # This exposes your Stacklet outside of Kubernetes. Remove this configuration if this is not desired
zookeeperConfigMapName: simple-druid-znode
Expand Down
4 changes: 2 additions & 2 deletions docs/modules/druid/partials/supported-versions.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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.

- 31.0.1
- 33.0.0
- 31.0.1 (deprecated)
- 30.0.1 (LTS)
- 30.0.0 (deprecated)
4 changes: 2 additions & 2 deletions tests/test-definition.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@
dimensions:
- name: druid
values:
- 30.0.0
- 30.0.1
- 31.0.1
- 33.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:
- 31.0.1
- 33.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
Expand Down