Skip to content

Commit 4058b98

Browse files
authored
fix: update documentation and test to use 2.6.1 (#629)
1 parent 32b4e55 commit 4058b98

File tree

14 files changed

+21
-18
lines changed

14 files changed

+21
-18
lines changed

docs/modules/hbase/examples/getting_started/getting_started.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ version() {
135135
echo "Check cluster version..."
136136
cluster_version=$(version | jq -r '.Version')
137137

138-
if [ "$cluster_version" == "2.4.18" ]; then
138+
if [ "$cluster_version" == "2.6.1" ]; then
139139
echo "Cluster version: $cluster_version"
140140
else
141141
echo "Unexpected version: $cluster_version"

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ version() {
135135
echo "Check cluster version..."
136136
cluster_version=$(version | jq -r '.Version')
137137

138-
if [ "$cluster_version" == "2.4.18" ]; then
138+
if [ "$cluster_version" == "2.6.1" ]; then
139139
echo "Cluster version: $cluster_version"
140140
else
141141
echo "Unexpected version: $cluster_version"

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.4.18
8+
productVersion: 2.6.1
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.4.18
8+
productVersion: 2.6.1
99
clusterConfig:
1010
hdfsConfigMapName: simple-hdfs
1111
zookeeperConfigMapName: simple-hbase-znode

docs/modules/hbase/examples/usage-guide/hbck2-job.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ spec:
88
spec:
99
containers:
1010
- name: hbck2
11-
image: oci.stackable.tech/sdp/hbase:2.4.18-stackable0.0.0-dev
11+
image: oci.stackable.tech/sdp/hbase:2.6.1-stackable0.0.0-dev
1212
volumeMounts:
1313
- name: hbase-config
1414
mountPath: /stackable/conf

docs/modules/hbase/examples/usage-guide/hbck2-job.yaml.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ spec:
88
spec:
99
containers:
1010
- name: hbck2
11-
image: oci.stackable.tech/sdp/hbase:2.4.18-stackable{{ versions.hbase }}
11+
image: oci.stackable.tech/sdp/hbase:2.6.1-stackable{{ versions.hbase }}
1212
volumeMounts:
1313
- name: hbase-config
1414
mountPath: /stackable/conf

docs/modules/hbase/examples/usage-guide/snapshot-export-job.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ spec:
88
spec:
99
containers:
1010
- name: hbase
11-
image: oci.stackable.tech/sdp/hbase:2.4.18-stackable0.0.0-dev
11+
image: oci.stackable.tech/sdp/hbase:2.6.1-stackable0.0.0-dev
1212
volumeMounts:
1313
- name: hbase-config
1414
mountPath: /stackable/conf
@@ -40,6 +40,7 @@ spec:
4040
- my-snapshot
4141
- --copy-to
4242
- s3a://hbase/my-snapshot
43+
- --no-checksum-verify
4344
volumes:
4445
- name: hbase-config
4546
projected:

docs/modules/hbase/examples/usage-guide/snapshot-export-job.yaml.j2

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ spec:
88
spec:
99
containers:
1010
- name: hbase
11-
image: oci.stackable.tech/sdp/hbase:2.4.18-stackable{{ versions.hbase }}
11+
image: oci.stackable.tech/sdp/hbase:2.6.1-stackable{{ versions.hbase }}
1212
volumeMounts:
1313
- name: hbase-config
1414
mountPath: /stackable/conf
@@ -40,6 +40,7 @@ spec:
4040
- my-snapshot
4141
- --copy-to
4242
- s3a://hbase/my-snapshot
43+
- --no-checksum-verify
4344
volumes:
4445
- name: hbase-config
4546
projected:

docs/modules/hbase/pages/getting_started/first_steps.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ include::example$getting_started/getting_started.sh[tag=cluster-version]
8585
This returns the version that was specified in the HBase cluster definition:
8686

8787
[source,json]
88-
{"Version":"2.4.18"}
88+
{"Version":"2.6.1"}
8989

9090
The cluster status can be checked and formatted like this:
9191

docs/modules/hbase/pages/usage-guide/snapshot-export.adoc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ $ export \
3333
AWS_SSL_ENABLED=true \
3434
AWS_PATH_STYLE_ACCESS=true
3535
$ export-snapshot-to-s3 \
36+
--no-checksum-verify \
3637
--snapshot my-snapshot \
3738
--copy-to s3a://my-bucket/my-snapshot
3839
----
@@ -42,6 +43,7 @@ Snapshots can also be imported from S3 into HDFS:
4243
[source,shell]
4344
----
4445
$ export-snapshot-to-s3 \
46+
--no-checksum-verify \
4547
--snapshot snap \
4648
--copy-from s3a://my-bucket/my-snapshot \
4749
--copy-to hdfs://simple-hdfs/hbase

0 commit comments

Comments
 (0)