Skip to content
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: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
### Added

- Helm: Allow Pod `priorityClassName` to be configured ([#691]).
- Added support for HBase 2.6.3 ([#695]).

[#691]: https://github.com/stackabletech/hbase-operator/pull/691

Expand All @@ -19,7 +20,7 @@
- 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`.
- Added support for HBase 2.6.2 ([#659]):
- Added support for HBase 2.6.2 ([#659]).
- Add RBAC rule to helm template for automatic cluster domain detection ([#675]).

### Changed
Expand Down Expand Up @@ -75,6 +76,7 @@
[#672]: https://github.com/stackabletech/hbase-operator/pull/672
[#675]: https://github.com/stackabletech/hbase-operator/pull/675
[#678]: https://github.com/stackabletech/hbase-operator/pull/678
[#695]: https://github.com/stackabletech/hbase-operator/pull/695

## [25.3.0] - 2025-03-21

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ version() {
echo "Check cluster version..."
cluster_version=$(version | jq -r '.Version')

if [ "$cluster_version" == "2.6.2-stackable0.0.0-dev" ]; then
if [ "$cluster_version" == "2.6.3-stackable0.0.0-dev" ]; then
echo "Cluster version: $cluster_version"
else
echo "Unexpected version: $cluster_version"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ version() {
echo "Check cluster version..."
cluster_version=$(version | jq -r '.Version')

if [ "$cluster_version" == "2.6.2-stackable0.0.0-dev" ]; then
if [ "$cluster_version" == "2.6.3-stackable0.0.0-dev" ]; then
echo "Cluster version: $cluster_version"
else
echo "Unexpected version: $cluster_version"
Expand Down
2 changes: 1 addition & 1 deletion docs/modules/hbase/examples/getting_started/hbase.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
name: simple-hbase
spec:
image:
productVersion: 2.6.2
productVersion: 2.6.3
clusterConfig:
hdfsConfigMapName: simple-hdfs
zookeeperConfigMapName: simple-hbase-znode
Expand Down
2 changes: 1 addition & 1 deletion docs/modules/hbase/examples/getting_started/hbase.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
name: simple-hbase
spec:
image:
productVersion: 2.6.2
productVersion: 2.6.3
clusterConfig:
hdfsConfigMapName: simple-hdfs
zookeeperConfigMapName: simple-hbase-znode
Expand Down
2 changes: 1 addition & 1 deletion docs/modules/hbase/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.1
productVersion: 3.4.2
clusterConfig:
dfsReplication: 1
zookeeperConfigMapName: simple-hdfs-znode
Expand Down
2 changes: 1 addition & 1 deletion docs/modules/hbase/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.1
productVersion: 3.4.2
clusterConfig:
dfsReplication: 1
zookeeperConfigMapName: simple-hdfs-znode
Expand Down
2 changes: 1 addition & 1 deletion docs/modules/hbase/examples/usage-guide/hbck2-job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ spec:
spec:
containers:
- name: hbck2
image: oci.stackable.tech/sdp/hbase:2.6.2-stackable0.0.0-dev
image: oci.stackable.tech/sdp/hbase:2.6.3-stackable0.0.0-dev
volumeMounts:
- name: hbase-config
mountPath: /stackable/conf
Expand Down
2 changes: 1 addition & 1 deletion docs/modules/hbase/examples/usage-guide/hbck2-job.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ spec:
spec:
containers:
- name: hbck2
image: oci.stackable.tech/sdp/hbase:2.6.2-stackable{{ versions.hbase }}
image: oci.stackable.tech/sdp/hbase:2.6.3-stackable{{ versions.hbase }}
volumeMounts:
- name: hbase-config
mountPath: /stackable/conf
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ spec:
spec:
containers:
- name: hbase
image: oci.stackable.tech/sdp/hbase:2.6.2-stackable0.0.0-dev
image: oci.stackable.tech/sdp/hbase:2.6.3-stackable0.0.0-dev
volumeMounts:
- name: hbase-config
mountPath: /stackable/conf
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ spec:
spec:
containers:
- name: hbase
image: oci.stackable.tech/sdp/hbase:2.6.2-stackable{{ versions.hbase }}
image: oci.stackable.tech/sdp/hbase:2.6.3-stackable{{ versions.hbase }}
volumeMounts:
- name: hbase-config
mountPath: /stackable/conf
Expand Down
2 changes: 1 addition & 1 deletion docs/modules/hbase/pages/getting_started/first_steps.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ include::example$getting_started/getting_started.sh[tag=cluster-version]
This returns the version that was specified in the HBase cluster definition:

[source,json]
{"Version":"2.6.2"}
{"Version":"2.6.3"}

The cluster status can be checked and formatted like this:

Expand Down
4 changes: 2 additions & 2 deletions docs/modules/hbase/partials/supported-versions.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
// This is a separate file, since it is used by both the direct HBase-Operator documentation, and the overarching
// Stackable Platform documentation.

- 2.6.2 (LTS)
- 2.6.1 (Deprecated)
- 2.6.3 (LTS)
- 2.6.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 @@ -147,7 +147,7 @@ mod tests {
name: simple-hbase
spec:
image:
productVersion: 2.6.2
productVersion: 2.6.3
clusterConfig:
hdfsConfigMapName: simple-hdfs
zookeeperConfigMapName: simple-znode
Expand Down Expand Up @@ -184,7 +184,7 @@ mod tests {
name: simple-hbase
spec:
image:
productVersion: 2.6.2
productVersion: 2.6.3
clusterConfig:
hdfsConfigMapName: simple-hdfs
zookeeperConfigMapName: simple-znode
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 @@ -105,7 +105,7 @@ mod tests {
name: simple-hbase
spec:
image:
productVersion: 2.6.2
productVersion: 2.6.3
clusterConfig:
hdfsConfigMapName: simple-hdfs
zookeeperConfigMapName: simple-znode
Expand Down
6 changes: 3 additions & 3 deletions rust/operator-binary/src/crd/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1311,7 +1311,7 @@ metadata:
name: test-hbase
spec:
image:
productVersion: 2.6.2
productVersion: 2.6.3
clusterConfig:
hdfsConfigMapName: test-hdfs
zookeeperConfigMapName: test-znode
Expand Down Expand Up @@ -1359,7 +1359,7 @@ spec:
)]);

let validated_config = validate_all_roles_and_groups_config(
"2.6.2",
"2.6.3",
&transform_all_roles_to_config(&hbase, roles).unwrap(),
&ProductConfigManager::from_yaml_file("../../deploy/config-spec/properties.yaml")
.unwrap(),
Expand Down Expand Up @@ -1412,7 +1412,7 @@ metadata:
name: test-hbase
spec:
image:
productVersion: 2.6.2
productVersion: 2.6.3
clusterConfig:
hdfsConfigMapName: test-hdfs
zookeeperConfigMapName: test-znode
Expand Down
6 changes: 3 additions & 3 deletions rust/operator-binary/src/hbase_controller.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1210,12 +1210,12 @@ mod test {
use super::*;

#[rstest]
#[case("2.6.1", HbaseRole::Master, vec!["master", "ui-http"])]
#[case("2.6.1", HbaseRole::RegionServer, vec!["regionserver", "ui-http"])]
#[case("2.6.1", HbaseRole::RestServer, vec!["rest-http", "ui-http"])]
#[case("2.6.2", HbaseRole::Master, vec!["master", "ui-http"])]
#[case("2.6.2", HbaseRole::RegionServer, vec!["regionserver", "ui-http"])]
#[case("2.6.2", HbaseRole::RestServer, vec!["rest-http", "ui-http"])]
#[case("2.6.3", HbaseRole::Master, vec!["master", "ui-http"])]
#[case("2.6.3", HbaseRole::RegionServer, vec!["regionserver", "ui-http"])]
#[case("2.6.3", HbaseRole::RestServer, vec!["rest-http", "ui-http"])]
fn test_rolegroup_service_ports(
#[case] hbase_version: &str,
#[case] role: HbaseRole,
Expand Down
16 changes: 8 additions & 8 deletions tests/test-definition.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,25 @@
dimensions:
- name: hbase
values:
- 2.6.1
- 2.6.2
- 2.6.3
# To use a custom image, add a comma and the full name after the product version
# - 2.6.2,oci.stackable.tech/sandbox/hbase:2.6.2-stackable0.0.0-dev
# - 2.6.3,oci.stackable.tech/sandbox/hbase:2.6.3-stackable0.0.0-dev
- name: hbase-opa
values:
- 2.6.2
- 2.6.3
# To use a custom image, add a comma and the full name after the product version
# - 2.6.2,oci.stackable.tech/sandbox/hbase:2.6.2-stackable0.0.0-dev
# - 2.6.3,oci.stackable.tech/sandbox/hbase:2.6.3-stackable0.0.0-dev
- name: hbase-latest
values:
- 2.6.2
# - 2.4.18,oci.stackable.tech/sandbox/hbase:2.4.18-stackable0.0.0-dev
- 2.6.3
# - 2.6.3,oci.stackable.tech/sandbox/hbase:2.6.3-stackable0.0.0-dev
- name: hdfs
values:
- 3.4.1
- 3.4.2
- name: hdfs-latest
values:
- 3.4.1
- 3.4.2
- name: zookeeper
values:
- 3.9.3
Expand Down
Loading