Skip to content

Commit

Permalink
docs: Add listener-operator where missing (#425)
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 c6047ab commit 334cabe
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,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 superset-operator stackable-dev/superset-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 \
superset=0.0.0-dev
# end::stackablectl-install-operators[]
;;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,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 superset-operator {{ helm.repo_name }}/superset-operator --version {{ versions.superset }}
# 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 }} \
superset={{ versions.superset }}
# end::stackablectl-install-operators[]
;;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@ spec:
command: [
"/bin/sh",
"-c",
"mkdir --parents /stackable/app/pythonpath && cp /stackable/config/* /stackable/app/pythonpath && superset load_examples"
"mkdir --parents /stackable/app/pythonpath && \
cp /stackable/config/* /stackable/app/pythonpath && \
echo 'SQLALCHEMY_EXAMPLES_URI = os.environ.get(\"SQLALCHEMY_DATABASE_URI\")' >> /stackable/app/pythonpath/superset_config.py && \
superset load_examples"
]
env:
- name: SECRET_KEY
Expand Down
5 changes: 3 additions & 2 deletions docs/modules/superset/pages/getting_started/installation.adoc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
= Installation

On this page you will install the Stackable Superset Operator as well as the commons and secret Operator which are
On this page you will install the Stackable Superset Operator as well as the commons, secret and listener Operator which are
required by all Stackable Operators.

== Stackable Operators
Expand All @@ -27,6 +27,7 @@ The tool will show
----
[INFO ] Installing commons operator
[INFO ] Installing secret operator
[INFO ] Installing listener operator
[INFO ] Installing superset operator
----

Expand All @@ -52,4 +53,4 @@ CRDs for the required operators). You are now ready to deploy Superset in Kubern

== What's next

xref:getting_started/first_steps.adoc[Deploy a Superset instance and connect to it].
xref:getting_started/first_steps.adoc[Deploy a Superset instance and connect to it].
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
superset: 0.0.0-dev

0 comments on commit 334cabe

Please sign in to comment.