Skip to content

Commit ee06e0b

Browse files
docs: Add listener-operator where missing (#533)
* docs: Add listener-operator where missing * docs: Add listener-operator where missing
1 parent 45dff03 commit ee06e0b

File tree

6 files changed

+8
-1
lines changed

6 files changed

+8
-1
lines changed

docs/modules/nifi/examples/getting_started/getting_started.sh

+2
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ echo "Installing Operators with Helm"
3232
# tag::helm-install-operators[]
3333
helm install --wait commons-operator stackable-dev/commons-operator --version 0.0.0-dev
3434
helm install --wait secret-operator stackable-dev/secret-operator --version 0.0.0-dev
35+
helm install --wait listener-operator stackable-dev/listener-operator --version 0.0.0-dev
3536
helm install --wait zookeeper-operator stackable-dev/zookeeper-operator --version 0.0.0-dev
3637
helm install --wait nifi-operator stackable-dev/nifi-operator --version 0.0.0-dev
3738
# end::helm-install-operators[]
@@ -42,6 +43,7 @@ echo "installing Operators with stackablectl"
4243
stackablectl operator install \
4344
commons=0.0.0-dev \
4445
secret=0.0.0-dev \
46+
listener=0.0.0-dev \
4547
zookeeper=0.0.0-dev \
4648
nifi=0.0.0-dev
4749
# end::stackablectl-install-operators[]

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

+2
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ echo "Installing Operators with Helm"
3232
# tag::helm-install-operators[]
3333
helm install --wait commons-operator {{ helm.repo_name }}/commons-operator --version {{ versions.commons }}
3434
helm install --wait secret-operator {{ helm.repo_name }}/secret-operator --version {{ versions.secret }}
35+
helm install --wait listener-operator {{ helm.repo_name }}/listener-operator --version {{ versions.listener }}
3536
helm install --wait zookeeper-operator {{ helm.repo_name }}/zookeeper-operator --version {{ versions.zookeeper }}
3637
helm install --wait nifi-operator {{ helm.repo_name }}/nifi-operator --version {{ versions.nifi }}
3738
# end::helm-install-operators[]
@@ -42,6 +43,7 @@ echo "installing Operators with stackablectl"
4243
stackablectl operator install \
4344
commons={{ versions.commons }} \
4445
secret={{ versions.secret }} \
46+
listener={{ versions.listener }} \
4547
zookeeper={{ versions.zookeeper }} \
4648
nifi={{ versions.nifi }}
4749
# end::stackablectl-install-operators[]
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# tag::stackablectl-install-operators-output[]
22
[INFO ] Installing commons operator in version 0.0.0-dev
33
[INFO ] Installing secret operator in version 0.0.0-dev
4+
[INFO ] Installing listener operator in version 0.0.0-dev
45
[INFO ] Installing zookeeper operator in version 0.0.0-dev
56
[INFO ] Installing nifi operator in version 0.0.0-dev
67
# end::stackablectl-install-operators-output[]
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# tag::stackablectl-install-operators-output[]
22
[INFO ] Installing commons operator in version {{ versions.commons }}
33
[INFO ] Installing secret operator in version {{ versions.secret }}
4+
[INFO ] Installing listener operator in version {{ versions.listener }}
45
[INFO ] Installing zookeeper operator in version {{ versions.zookeeper }}
56
[INFO ] Installing nifi operator in version {{ versions.nifi }}
67
# end::stackablectl-install-operators-output[]

docs/modules/nifi/pages/getting_started/installation.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
= Installation
22

33
On this page you will install the Stackable Operator for Apache NiFi and operators for its dependencies - ZooKeeper -
4-
as well as the commons and secret operator which are required by all Stackable Operators.
4+
as well as the commons, secret and listener operator which are required by all Stackable Operators.
55

66
== Stackable Operators
77

docs/templating_vars.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@ helm:
55
versions:
66
commons: 0.0.0-dev
77
secret: 0.0.0-dev
8+
listener: 0.0.0-dev
89
zookeeper: 0.0.0-dev
910
nifi: 0.0.0-dev

0 commit comments

Comments
 (0)