Skip to content

Commit

Permalink
bump hbase to 2.4.17 and zk to 3.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
maltesander committed Oct 11, 2023
1 parent 6b3e024 commit 387b517
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
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.4.12" ]; then
if [ "$cluster_version" == "2.4.17" ]; 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.4.12" ]; then
if [ "$cluster_version" == "2.4.17" ]; 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.4.12
productVersion: 2.4.17
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.4.12
productVersion: 2.4.17
clusterConfig:
hdfsConfigMapName: simple-hdfs
zookeeperConfigMapName: simple-znode
Expand Down
2 changes: 1 addition & 1 deletion docs/modules/hbase/examples/getting_started/zk.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
name: simple-zk
spec:
image:
productVersion: 3.8.0
productVersion: 3.8.2
servers:
roleGroups:
default:
Expand Down
2 changes: 1 addition & 1 deletion docs/modules/hbase/examples/getting_started/zk.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
name: simple-zk
spec:
image:
productVersion: 3.8.0
productVersion: 3.8.2
servers:
roleGroups:
default:
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 @@ -76,7 +76,7 @@ include::example$getting_started/getting_started.sh[tag=cluster-version]
This will return the version that was specified in the HBase cluster definition:

[source,json]
{"Version":"2.4.12"}
{"Version":"2.4.17"}

The cluster status can be checked and formatted like this:

Expand Down
4 changes: 2 additions & 2 deletions rust/crd/src/affinity.rs
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ mod tests {
name: simple-hbase
spec:
image:
productVersion: 2.4.12
productVersion: 2.4.17
clusterConfig:
hdfsConfigMapName: simple-hdfs
zookeeperConfigMapName: simple-znode
Expand Down Expand Up @@ -229,7 +229,7 @@ mod tests {
name: simple-hbase
spec:
image:
productVersion: 2.4.12
productVersion: 2.4.17
clusterConfig:
hdfsConfigMapName: simple-hdfs
zookeeperConfigMapName: simple-znode
Expand Down
2 changes: 1 addition & 1 deletion rust/crd/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ impl Configuration for HbaseConfigFragment {
match file {
HBASE_ENV_SH => {
result.insert(HBASE_MANAGES_ZK.to_string(), Some("false".to_string()));
let mut all_hbase_opts = format!("-Djava.security.properties={CONFIG_DIR_NAME}/{JVM_SECURITY_PROPERTIES_FILE} -javaagent:/stackable/jmx/jmx_prometheus_javaagent-0.16.1.jar={METRICS_PORT}:/stackable/jmx/region-server.yaml");
let mut all_hbase_opts = format!("-Djava.security.properties={CONFIG_DIR_NAME}/{JVM_SECURITY_PROPERTIES_FILE} -javaagent:/stackable/jmx/jmx_prometheus_javaagent.jar={METRICS_PORT}:/stackable/jmx/region-server.yaml");
if let Some(hbase_opts) = &self.hbase_opts {
all_hbase_opts += " ";
all_hbase_opts += hbase_opts;
Expand Down

0 comments on commit 387b517

Please sign in to comment.