Skip to content

Commit

Permalink
docs: Add listener-operator where missing (#390)
Browse files Browse the repository at this point in the history
* docs: Add listener-operator where missing

* docs: Add listener-operator where missing
  • Loading branch information
siegfriedweber committed Nov 20, 2023
1 parent 4cb8432 commit abb0bce
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 4 deletions.
2 changes: 2 additions & 0 deletions docs/modules/hive/examples/getting_started/getting_started.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ echo "Installing Operators with Helm"
# tag::helm-install-operators[]
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 hive-operator stackable-dev/hive-operator --version 0.0.0-dev
# end::helm-install-operators[]

Expand Down Expand Up @@ -73,6 +74,7 @@ echo "Installing Operators with stackablectl"
stackablectl operator install \
commons=0.0.0-dev \
secret=0.0.0-dev \
listener=0.0.0-dev \
hive=0.0.0-dev
# end::stackablectl-install-operators[]
fi
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ echo "Installing Operators with Helm"
# tag::helm-install-operators[]
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 hive-operator {{ helm.repo_name }}/hive-operator --version {{ versions.hive }}
# end::helm-install-operators[]

Expand Down Expand Up @@ -73,6 +74,7 @@ echo "Installing Operators with stackablectl"
stackablectl operator install \
commons={{ versions.commons }} \
secret={{ versions.secret }} \
listener={{ versions.listener }} \
hive={{ versions.hive }}
# end::stackablectl-install-operators[]
fi
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# tag::stackablectl-install-operators-output[]
[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 hive operator in version 0.0.0-dev
# end::stackablectl-install-operators-output[]
# end::stackablectl-install-operators-output[]
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# tag::stackablectl-install-operators-output[]
[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 hive operator in version {{ versions.hive }}
# end::stackablectl-install-operators-output[]
# end::stackablectl-install-operators-output[]
2 changes: 2 additions & 0 deletions docs/modules/hive/examples/getting_started/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,7 @@ releases:
operatorVersion: 0.0.0-dev
hive:
operatorVersion: 0.0.0-dev
listener:
operatorVersion: 0.0.0-dev
secret:
operatorVersion: 0.0.0-dev
2 changes: 2 additions & 0 deletions docs/modules/hive/examples/getting_started/release.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,7 @@ releases:
operatorVersion: {{ versions.commons }}
hive:
operatorVersion: {{ versions.hive }}
listener:
operatorVersion: {{ versions.listener }}
secret:
operatorVersion: {{ versions.secret }}
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ stacks:
description: Stack for Hive getting started guide
stackableOperators:
- commons
- listener
- secret
- hive
labels:
Expand Down
1 change: 1 addition & 0 deletions docs/modules/hive/pages/getting_started/first_steps.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Several requirements should have already been installed in the xref:getting_star

* xref:commons-operator:index.adoc[Commons Operator]
* xref:secret-operator:index.adoc[Secret Operator]
* xref:listener-operator:index.adoc[Listener Operator]
* xref:hive:index.adoc[Hive Operator]
* PostgreSQL
* MinIO for S3
Expand Down
4 changes: 2 additions & 2 deletions docs/modules/hive/pages/index.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ instance. The discovery ConfigMap contains information on how to connect to the

== Dependencies

The Stackable Operator for Apache Hive depends on the Stackable xref:commons-operator:index.adoc[commons] and
xref:secret-operator:index.adoc[secret] operators.
The Stackable Operator for Apache Hive depends on the Stackable xref:commons-operator:index.adoc[commons],
xref:secret-operator:index.adoc[secret] and xref:listener-operator:index.adoc[listener] operators.

== Required external component: An SQL database

Expand Down
1 change: 1 addition & 0 deletions docs/templating_vars.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ helm:
versions:
commons: 0.0.0-dev
secret: 0.0.0-dev
listener: 0.0.0-dev
hive: 0.0.0-dev

0 comments on commit abb0bce

Please sign in to comment.