Skip to content
Open
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 @@ -7,6 +7,7 @@ All notable changes to this project will be documented in this file.
### Added

- BREAKING: Add required CLI argument and env var to set the image repository used to construct final product image names: `IMAGE_REPOSITORY` (`--image-repository`), eg. `oci.example.org/my/namespace` ([#778]).
- Added support for Hadoop `3.5.0` and `3.4.3` ([#793]).

### Changed

Expand All @@ -24,6 +25,7 @@ All notable changes to this project will be documented in this file.
[#778]: https://github.com/stackabletech/hdfs-operator/pull/778
[#783]: https://github.com/stackabletech/hdfs-operator/pull/783
[#787]: https://github.com/stackabletech/hdfs-operator/pull/787
[#793]: https://github.com/stackabletech/hdfs-operator/pull/793

## [26.3.0] - 2026-03-16

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

- 3.4.2 (LTS)
- 3.5.0 (LTS)
- 3.4.3
- 3.4.2 (deprecated)
4 changes: 2 additions & 2 deletions rust/operator-binary/src/config/jvm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ mod tests {
name: hdfs
spec:
image:
productVersion: 3.4.2
productVersion: 3.5.0
clusterConfig:
zookeeperConfigMapName: hdfs-zk
nameNodes:
Expand Down Expand Up @@ -149,7 +149,7 @@ mod tests {
name: hdfs
spec:
image:
productVersion: 3.4.2
productVersion: 3.5.0
clusterConfig:
zookeeperConfigMapName: hdfs-zk
nameNodes:
Expand Down
2 changes: 1 addition & 1 deletion rust/operator-binary/src/crd/affinity.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ metadata:
name: simple-hdfs
spec:
image:
productVersion: 3.4.2
productVersion: 3.5.0
clusterConfig:
zookeeperConfigMapName: hdfs-zk
journalNodes:
Expand Down
18 changes: 9 additions & 9 deletions rust/operator-binary/src/crd/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1721,7 +1721,7 @@ metadata:
name: hdfs
spec:
image:
productVersion: 3.4.2
productVersion: 3.5.0
clusterConfig:
zookeeperConfigMapName: hdfs-zk
dataNodes:
Expand Down Expand Up @@ -1756,7 +1756,7 @@ metadata:
name: hdfs
spec:
image:
productVersion: 3.4.2
productVersion: 3.5.0
clusterConfig:
zookeeperConfigMapName: hdfs-zk
dataNodes:
Expand Down Expand Up @@ -1791,7 +1791,7 @@ metadata:
name: hdfs
spec:
image:
productVersion: 3.4.2
productVersion: 3.5.0
clusterConfig:
zookeeperConfigMapName: hdfs-zk
dataNodes:
Expand Down Expand Up @@ -1821,7 +1821,7 @@ metadata:
name: hdfs
spec:
image:
productVersion: 3.4.2
productVersion: 3.5.0
clusterConfig:
zookeeperConfigMapName: hdfs-zk
rackAwareness:
Expand Down Expand Up @@ -1886,7 +1886,7 @@ metadata:
name: hdfs
spec:
image:
productVersion: 3.4.2
productVersion: 3.5.0
clusterConfig:
zookeeperConfigMapName: hdfs-zk
dataNodes:
Expand Down Expand Up @@ -1942,7 +1942,7 @@ metadata:
name: hdfs
spec:
image:
productVersion: 3.4.2
productVersion: 3.5.0
clusterConfig:
zookeeperConfigMapName: hdfs-zk
dataNodes:
Expand Down Expand Up @@ -1998,7 +1998,7 @@ metadata:
name: hdfs
spec:
image:
productVersion: 3.4.2
productVersion: 3.5.0
clusterConfig:
zookeeperConfigMapName: hdfs-zk
dataNodes:
Expand All @@ -2025,7 +2025,7 @@ metadata:
name: hdfs
spec:
image:
productVersion: 3.4.2
productVersion: 3.5.0
clusterConfig:
zookeeperConfigMapName: hdfs-zk
rackAwareness:
Expand Down Expand Up @@ -2061,7 +2061,7 @@ spec:
fn roundtrip_test_data() -> Vec<Self> {
stackable_operator::utils::yaml_from_str_singleton_map(indoc::indoc! {r#"
- image:
productVersion: 3.4.2
productVersion: 3.5.0
pullPolicy: IfNotPresent
clusterOperation:
reconciliationPaused: false
Expand Down
10 changes: 6 additions & 4 deletions tests/test-definition.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,18 @@ dimensions:
- name: hadoop
values:
- 3.4.2
- 3.4.3
- 3.5.0
# To use a custom image, add a comma and the full name after the product version
# - 3.4.2,oci.stackable.tech/sandbox/hadoop:3.4.2-stackable0.0.0-dev
# - 3.5.0,oci.stackable.tech/sandbox/hadoop:3.5.0-stackable0.0.0-dev
- name: hadoop-latest
values:
- 3.4.2
- 3.5.0
# To use a custom image, add a comma and the full name after the product version
# - 3.4.2,oci.stackable.tech/sandbox/hadoop:3.4.2-stackable0.0.0-dev
# - 3.5.0,oci.stackable.tech/sandbox/hadoop:3.5.0-stackable0.0.0-dev
- name: hadoop-external-client-docker-image
values:
- 3.4.2
- 3.5.0
- name: zookeeper
values:
- 3.9.5
Expand Down
Loading