Skip to content

Commit

Permalink
docs: Add listener-operator where missing (#421)
Browse files Browse the repository at this point in the history
  • Loading branch information
siegfriedweber authored Nov 20, 2023
1 parent d46d4f4 commit 097ce80
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ helm install --wait zookeeper-operator stackable-dev/zookeeper-operator --versio
helm install --wait hdfs-operator stackable-dev/hdfs-operator --version 0.0.0-dev
helm install --wait commons-operator stackable-dev/commons-operator --version 0.0.0-dev
helm install --wait secret-operator stackable-dev/secret-operator --version 0.0.0-dev
helm install --wait listener-operator stackable-dev/listener-operator --version 0.0.0-dev
helm install --wait hbase-operator stackable-dev/hbase-operator --version 0.0.0-dev
# end::helm-install-operators[]
;;
Expand All @@ -37,6 +38,7 @@ echo "installing Operators with stackablectl"
stackablectl operator install \
commons=0.0.0-dev \
secret=0.0.0-dev \
listener=0.0.0-dev \
zookeeper=0.0.0-dev \
hdfs=0.0.0-dev \
hbase=0.0.0-dev
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ helm install --wait zookeeper-operator {{ helm.repo_name }}/zookeeper-operator -
helm install --wait hdfs-operator {{ helm.repo_name }}/hdfs-operator --version {{ versions.hdfs }}
helm install --wait commons-operator {{ helm.repo_name }}/commons-operator --version {{ versions.commons }}
helm install --wait secret-operator {{ helm.repo_name }}/secret-operator --version {{ versions.secret }}
helm install --wait listener-operator {{ helm.repo_name }}/listener-operator --version {{ versions.listener }}
helm install --wait hbase-operator {{ helm.repo_name }}/hbase-operator --version {{ versions.hbase }}
# end::helm-install-operators[]
;;
Expand All @@ -37,6 +38,7 @@ echo "installing Operators with stackablectl"
stackablectl operator install \
commons={{ versions.commons }} \
secret={{ versions.secret }} \
listener={{ versions.listener }} \
zookeeper={{ versions.zookeeper }} \
hdfs={{ versions.hdfs }} \
hbase={{ versions.hbase }}
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 @@ -8,7 +8,7 @@ spec:
productVersion: 2.4.17
clusterConfig:
hdfsConfigMapName: simple-hdfs
zookeeperConfigMapName: simple-znode
zookeeperConfigMapName: simple-hbase-znode
masters:
roleGroups:
default:
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 @@ -8,7 +8,7 @@ spec:
productVersion: 3.3.4
clusterConfig:
dfsReplication: 1
zookeeperConfigMapName: simple-znode
zookeeperConfigMapName: simple-hdfs-znode
nameNodes:
roleGroups:
default:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[INFO ] Installing commons operator in version 0.0.0-dev
[INFO ] Installing secret operator in version 0.0.0-dev
[INFO ] Installing listener operator in version 0.0.0-dev
[INFO ] Installing zookeeper operator in version 0.0.0-dev
[INFO ] Installing hdfs operator 0.0.0-dev
[INFO ] Installing hbase operator 0.0.0-dev
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[INFO ] Installing commons operator in version {{ versions.commons }}
[INFO ] Installing secret operator in version {{ versions.secret }}
[INFO ] Installing listener operator in version {{ versions.listener }}
[INFO ] Installing zookeeper operator in version {{ versions.zookeeper }}
[INFO ] Installing hdfs operator {{ versions.hdfs }}
[INFO ] Installing hbase operator {{ versions.hbase }}
4 changes: 2 additions & 2 deletions docs/modules/hbase/pages/getting_started/installation.adoc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
= Installation

On this page you will install the Stackable HBase operator and its dependencies, the ZooKeeper and HDFS operators, as
well as the commons and secret operators which are required by all Stackable operators.
well as the commons, secret and listener operators which are required by all Stackable operators.

== Stackable Operators

Expand Down Expand Up @@ -51,4 +51,4 @@ for the required operators). You are now ready to deploy HBase in Kubernetes.
== What's next

xref:getting_started/first_steps.adoc[Set up an HBase cluster] and its dependencies and
xref:getting_started/first_steps.adoc#_verify_that_it_works[verify that it works].
xref:getting_started/first_steps.adoc#_verify_that_it_works[verify that it works].
1 change: 1 addition & 0 deletions docs/templating_vars.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ helm:
versions:
commons: 0.0.0-dev
secret: 0.0.0-dev
listener: 0.0.0-dev
zookeeper: 0.0.0-dev
hdfs: 0.0.0-dev
hbase: 0.0.0-dev

0 comments on commit 097ce80

Please sign in to comment.