File tree 6 files changed +8
-1
lines changed
6 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ echo "Installing Operators with Helm"
32
32
# tag::helm-install-operators[]
33
33
helm install --wait commons-operator stackable-dev/commons-operator --version 0.0.0-dev
34
34
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
35
36
helm install --wait zookeeper-operator stackable-dev/zookeeper-operator --version 0.0.0-dev
36
37
helm install --wait nifi-operator stackable-dev/nifi-operator --version 0.0.0-dev
37
38
# end::helm-install-operators[]
@@ -42,6 +43,7 @@ echo "installing Operators with stackablectl"
42
43
stackablectl operator install \
43
44
commons=0.0.0-dev \
44
45
secret=0.0.0-dev \
46
+ listener=0.0.0-dev \
45
47
zookeeper=0.0.0-dev \
46
48
nifi=0.0.0-dev
47
49
# end::stackablectl-install-operators[]
Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ echo "Installing Operators with Helm"
32
32
# tag::helm-install-operators[]
33
33
helm install --wait commons-operator {{ helm.repo_name }}/commons-operator --version {{ versions.commons }}
34
34
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 }}
35
36
helm install --wait zookeeper-operator {{ helm.repo_name }}/zookeeper-operator --version {{ versions.zookeeper }}
36
37
helm install --wait nifi-operator {{ helm.repo_name }}/nifi-operator --version {{ versions.nifi }}
37
38
# end::helm-install-operators[]
@@ -42,6 +43,7 @@ echo "installing Operators with stackablectl"
42
43
stackablectl operator install \
43
44
commons={{ versions.commons }} \
44
45
secret={{ versions.secret }} \
46
+ listener={{ versions.listener }} \
45
47
zookeeper={{ versions.zookeeper }} \
46
48
nifi={{ versions.nifi }}
47
49
# end::stackablectl-install-operators[]
Original file line number Diff line number Diff line change 1
1
# tag::stackablectl-install-operators-output[]
2
2
[INFO ] Installing commons operator in version 0.0.0-dev
3
3
[INFO ] Installing secret operator in version 0.0.0-dev
4
+ [INFO ] Installing listener operator in version 0.0.0-dev
4
5
[INFO ] Installing zookeeper operator in version 0.0.0-dev
5
6
[INFO ] Installing nifi operator in version 0.0.0-dev
6
7
# end::stackablectl-install-operators-output[]
Original file line number Diff line number Diff line change 1
1
# tag::stackablectl-install-operators-output[]
2
2
[INFO ] Installing commons operator in version {{ versions.commons }}
3
3
[INFO ] Installing secret operator in version {{ versions.secret }}
4
+ [INFO ] Installing listener operator in version {{ versions.listener }}
4
5
[INFO ] Installing zookeeper operator in version {{ versions.zookeeper }}
5
6
[INFO ] Installing nifi operator in version {{ versions.nifi }}
6
7
# end::stackablectl-install-operators-output[]
Original file line number Diff line number Diff line change 1
1
= Installation
2
2
3
3
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.
5
5
6
6
== Stackable Operators
7
7
Original file line number Diff line number Diff line change 5
5
versions :
6
6
commons : 0.0.0-dev
7
7
secret : 0.0.0-dev
8
+ listener : 0.0.0-dev
8
9
zookeeper : 0.0.0-dev
9
10
nifi : 0.0.0-dev
You can’t perform that action at this time.
0 commit comments