Skip to content

Commit

Permalink
docs: Add listener-operator where missing (#308)
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 authored Nov 20, 2023
1 parent e3f897b commit ec1e19e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,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 spark-k8s-operator stackable-dev/spark-k8s-operator --version 0.0.0-dev
# end::helm-install-operators[]
;;
Expand All @@ -38,6 +39,7 @@ echo "installing Operators with stackablectl"
stackablectl operator install \
commons=0.0.0-dev \
secret=0.0.0-dev \
listener=0.0.0-dev \
spark-k8s=0.0.0-dev
# end::stackablectl-install-operators[]
;;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,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 spark-k8s-operator {{ helm.repo_name }}/spark-k8s-operator --version {{ versions.spark }}
# end::helm-install-operators[]
;;
Expand All @@ -38,6 +39,7 @@ echo "installing Operators with stackablectl"
stackablectl operator install \
commons={{ versions.commons }} \
secret={{ versions.secret }} \
listener={{ versions.listener }} \
spark-k8s={{ versions.spark }}
# end::stackablectl-install-operators[]
;;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
= Installation

On this page you will install the Stackable Spark-on-Kubernetes operator as well as the Commons and Secret operators
On this page you will install the Stackable Spark-on-Kubernetes operator as well as the commons, secret and listener operators
which are required by all Stackable operators.

== Dependencies
Expand Down Expand Up @@ -40,6 +40,7 @@ The tool will show
----
[INFO ] Installing commons operator
[INFO ] Installing secret operator
[INFO ] Installing listener operator
[INFO ] Installing spark-k8s operator
----

Expand All @@ -66,4 +67,4 @@ CRDs for the required operators). You are now ready to create a Spark job.
== What's next

xref:getting_started/first_steps.adoc[Execute a Spark Job] and
xref:getting_started/first_steps.adoc#_verify_that_it_works[verify that it works] by inspecting the pod logs.
xref:getting_started/first_steps.adoc#_verify_that_it_works[verify that it works] by inspecting the pod logs.
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
spark: 0.0.0-dev

0 comments on commit ec1e19e

Please sign in to comment.