Skip to content

Commit de58dc6

Browse files
committed
fix merge conflict, fix clippy warning
2 parents 7b98b3f + 59ca515 commit de58dc6

7 files changed

Lines changed: 16 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
### Added
66

77
- 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` ([#752]).
8+
- Add support for HBase 2.6.6 (as LTS) ([#767]).
89

910
### Changed
1011

@@ -19,12 +20,17 @@
1920
- BREAKING: Removed product-config machinery. This is a breaking change in terms of configuration.
2021
Users relying on the product-config `properties.yaml` file have to set these properties via the CRD ([#765]).
2122

23+
### Removed
24+
25+
- Remove support for 2.6.3 ([#767]).
26+
2227
[#745]: https://github.com/stackabletech/hbase-operator/pull/745
2328
[#751]: https://github.com/stackabletech/hbase-operator/pull/751
2429
[#752]: https://github.com/stackabletech/hbase-operator/pull/752
2530
[#757]: https://github.com/stackabletech/hbase-operator/pull/757
2631
[#762]: https://github.com/stackabletech/hbase-operator/pull/762
2732
[#765]: https://github.com/stackabletech/hbase-operator/pull/765
33+
[#767]: https://github.com/stackabletech/hbase-operator/pull/767
2834

2935
## [26.3.0] - 2026-03-16
3036

docs/modules/hbase/examples/getting_started/hbase.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
name: simple-hbase
66
spec:
77
image:
8-
productVersion: 2.6.4
8+
productVersion: 2.6.6
99
clusterConfig:
1010
hdfsConfigMapName: simple-hdfs
1111
zookeeperConfigMapName: simple-hbase-znode

docs/modules/hbase/examples/getting_started/hbase.yaml.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
name: simple-hbase
66
spec:
77
image:
8-
productVersion: 2.6.4
8+
productVersion: 2.6.6
99
clusterConfig:
1010
hdfsConfigMapName: simple-hdfs
1111
zookeeperConfigMapName: simple-hbase-znode

docs/modules/hbase/partials/supported-versions.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
// This is a separate file, since it is used by both the direct HBase-Operator documentation, and the overarching
33
// Stackable Platform documentation.
44

5-
- 2.6.4 (LTS)
6-
- 2.6.3
5+
- 2.6.4 (DEPRECATED)
6+
- 2.6.6 (LTS)

rust/operator-binary/src/controller/validate.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ pub fn validate_cluster(
226226
/// Validates every role group of a role into a map keyed by role group name.
227227
///
228228
/// Each role group is merged and validated via
229-
/// [`with_validated_config`](stackable_operator::v2::role_utils::with_validated_config),
229+
/// [`with_validated_config`],
230230
/// which folds the CRD config fragment (default <- role <- role group) plus the
231231
/// `configOverrides`, `envOverrides`, `cliOverrides`, `podOverrides` and the
232232
/// `jvmArgumentOverrides` (role group wins) into a single merged

rust/operator-binary/src/crd/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -637,7 +637,7 @@ metadata:
637637
uid: 12345678-1234-1234-1234-123456789012
638638
spec:
639639
image:
640-
productVersion: 2.6.4
640+
productVersion: 2.6.6
641641
clusterConfig:
642642
hdfsConfigMapName: test-hdfs
643643
zookeeperConfigMapName: test-znode
@@ -693,7 +693,7 @@ spec:
693693
fn roundtrip_test_data() -> Vec<Self> {
694694
stackable_operator::utils::yaml_from_str_singleton_map(indoc::indoc! {r#"
695695
- image:
696-
productVersion: 2.6.4
696+
productVersion: 2.6.6
697697
pullPolicy: IfNotPresent
698698
clusterOperation:
699699
reconciliationPaused: false

tests/test-definition.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,19 @@
22
dimensions:
33
- name: hbase
44
values:
5-
- 2.6.3
65
- 2.6.4
6+
- 2.6.6
77
# To use a custom image, add a comma and the full name after the product version
88
# - x.x.x,oci.stackable.tech/sandbox/hbase:x.x.x-stackable0.0.0-dev
99
- name: hbase-opa
1010
values:
1111
- 2.6.4
12+
- 2.6.6
1213
# To use a custom image, add a comma and the full name after the product version
1314
# - x.x.x,oci.stackable.tech/sandbox/hbase:x.x.x-stackable0.0.0-dev
1415
- name: hbase-latest
1516
values:
16-
- 2.6.4
17+
- 2.6.6
1718
# - x.x.x,oci.stackable.tech/sandbox/hbase:x.x.x-stackable0.0.0-dev
1819
- name: hdfs
1920
values:

0 commit comments

Comments
 (0)