diff --git a/docs/modules/hive/examples/getting_started/getting_started.sh b/docs/modules/hive/examples/getting_started/getting_started.sh index 08d5cf51..45b7de4a 100755 --- a/docs/modules/hive/examples/getting_started/getting_started.sh +++ b/docs/modules/hive/examples/getting_started/getting_started.sh @@ -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[] @@ -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 diff --git a/docs/modules/hive/examples/getting_started/getting_started.sh.j2 b/docs/modules/hive/examples/getting_started/getting_started.sh.j2 index 4a1e395f..a04ed495 100755 --- a/docs/modules/hive/examples/getting_started/getting_started.sh.j2 +++ b/docs/modules/hive/examples/getting_started/getting_started.sh.j2 @@ -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[] @@ -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 diff --git a/docs/modules/hive/examples/getting_started/install-operator-output.txt b/docs/modules/hive/examples/getting_started/install-operator-output.txt index 1c8aa9ff..6046e087 100644 --- a/docs/modules/hive/examples/getting_started/install-operator-output.txt +++ b/docs/modules/hive/examples/getting_started/install-operator-output.txt @@ -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[] \ No newline at end of file +# end::stackablectl-install-operators-output[] diff --git a/docs/modules/hive/examples/getting_started/install-operator-output.txt.j2 b/docs/modules/hive/examples/getting_started/install-operator-output.txt.j2 index 726590a3..6c226765 100644 --- a/docs/modules/hive/examples/getting_started/install-operator-output.txt.j2 +++ b/docs/modules/hive/examples/getting_started/install-operator-output.txt.j2 @@ -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[] \ No newline at end of file +# end::stackablectl-install-operators-output[] diff --git a/docs/modules/hive/examples/getting_started/release.yaml b/docs/modules/hive/examples/getting_started/release.yaml index f7924749..0bb5223f 100644 --- a/docs/modules/hive/examples/getting_started/release.yaml +++ b/docs/modules/hive/examples/getting_started/release.yaml @@ -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 diff --git a/docs/modules/hive/examples/getting_started/release.yaml.j2 b/docs/modules/hive/examples/getting_started/release.yaml.j2 index 452e3416..cf99ed56 100644 --- a/docs/modules/hive/examples/getting_started/release.yaml.j2 +++ b/docs/modules/hive/examples/getting_started/release.yaml.j2 @@ -8,5 +8,7 @@ releases: operatorVersion: {{ versions.commons }} hive: operatorVersion: {{ versions.hive }} + listener: + operatorVersion: {{ versions.listener }} secret: operatorVersion: {{ versions.secret }} diff --git a/docs/modules/hive/examples/getting_started/stackablectl-hive-postgres-minio-stack.yaml b/docs/modules/hive/examples/getting_started/stackablectl-hive-postgres-minio-stack.yaml index 562da920..a30a9d65 100644 --- a/docs/modules/hive/examples/getting_started/stackablectl-hive-postgres-minio-stack.yaml +++ b/docs/modules/hive/examples/getting_started/stackablectl-hive-postgres-minio-stack.yaml @@ -5,6 +5,7 @@ stacks: description: Stack for Hive getting started guide stackableOperators: - commons + - listener - secret - hive labels: diff --git a/docs/modules/hive/pages/getting_started/first_steps.adoc b/docs/modules/hive/pages/getting_started/first_steps.adoc index e00034f9..2fae4d59 100644 --- a/docs/modules/hive/pages/getting_started/first_steps.adoc +++ b/docs/modules/hive/pages/getting_started/first_steps.adoc @@ -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 diff --git a/docs/modules/hive/pages/index.adoc b/docs/modules/hive/pages/index.adoc index defe1803..c6e3b8b3 100644 --- a/docs/modules/hive/pages/index.adoc +++ b/docs/modules/hive/pages/index.adoc @@ -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 diff --git a/docs/templating_vars.yaml b/docs/templating_vars.yaml index 9d5d1ce9..2277ea6a 100644 --- a/docs/templating_vars.yaml +++ b/docs/templating_vars.yaml @@ -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