aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorAndreas Geissler <andreas-geissler@telekom.de>2023-08-16 17:18:49 +0200
committerAndreas Geissler <andreas-geissler@telekom.de>2023-09-29 13:42:29 +0200
commitcfd8434fe9484b9219560159094b174421d6d6a2 (patch)
tree0825b2650bb861444f18444f0279479e4dcbf7c4 /docs
parent533403925a6b60f4113c4d9e54cd99be36dc9cc5 (diff)
[MARIADB][COMMON] Add support for mariadb-operator
Add template functions for the mariadb-operator resources and update the mariadb-galera chart to support them Change the flag to "useOperator" in cassandra to the global setup and additional labels for cassandra resources Changed Policy DB users to support the new mariadb User and fixed db.sh script to wait for the DB user creation Use the new readiness image 5.0.1 with the "app-name" option Change the MariaDB-Galera Service to the "primary" to avoid Deadlocks Fix previous SDNC patch (https://gerrit.onap.org/r/c/oom/+/135308) and temporary disable MariaDB for SDNR, as it is not compatible to MariaDB 11 Issue-ID: OOM-3236 Change-Id: Ie63fcc9c6d5fa802d38c592b449e7ff8553c2ab9 Signed-off-by: Andreas Geissler <andreas-geissler@telekom.de>
Diffstat (limited to 'docs')
-rw-r--r--docs/sections/guides/infra_guides/oom_infra_optional_addons.rst46
1 files changed, 45 insertions, 1 deletions
diff --git a/docs/sections/guides/infra_guides/oom_infra_optional_addons.rst b/docs/sections/guides/infra_guides/oom_infra_optional_addons.rst
index ad1104e569..71ce344f09 100644
--- a/docs/sections/guides/infra_guides/oom_infra_optional_addons.rst
+++ b/docs/sections/guides/infra_guides/oom_infra_optional_addons.rst
@@ -9,6 +9,8 @@
.. _Istio setup guide: https://istio.io/latest/docs/setup/install/helm/
.. _Kiali setup guide: https://kiali.io/docs/installation/installation-guide/example-install/
.. _Kserve setup guide: https://kserve.github.io/website/0.10/admin/kubernetes_deployment/
+.. _K8ssandra setup guide: https://docs.k8ssandra.io/install/
+.. _Mariadb-Operator setup guide: https://github.com/mariadb-operator/mariadb-operator
.. _oom_base_optional_addons:
@@ -99,7 +101,49 @@ To be done...
K8ssandra-Operator Installation
-------------------------------
-To be done...
+K8ssandra-Operator is used to ease the installation and lifecycle management
+Cassandra clusters, including monitoring and backup
+
+For setup the K8ssandra operator is used, see `K8ssandra setup guide`_
+
+- Install k8ssandra-operator namespace::
+
+ > kubectl create namespace k8ssandra-operator
+
+ > kubectl label namespace k8ssandra-operator istio-injection=enabled
+
+- Install the k8ssandra-operator::
+
+ > helm repo add k8ssandra https://helm.k8ssandra.io/stable
+
+ > helm repo update k8ssandra
+
+ > helm install k8ssandra-operator --namespace k8ssandra-operator
+ k8ssandra/k8ssandra-operator --set global.clusterScoped=true
+
+Mariadb-Operator Installation
+-----------------------------
+
+Mariadb-Operator is used to ease the installation and lifecycle management
+MariaDB Galera and Replication clusters, including monitoring and backup
+
+For setup the Mariadb-Operator is used, see `Mariadb-Operator setup guide`_
+
+- Install mariadb-operator namespace::
+
+ > kubectl create namespace mariadb-operator
+
+ > kubectl label namespace mariadb-operator istio-injection=enabled
+
+- Install the mariadb-operator::
+
+ > helm repo add mariadb-operator https://mariadb-operator.github.io/mariadb-operator
+
+ > helm repo update mariadb-operator
+
+ > helm install mariadb-operator --namespace mariadb-operator
+ mariadb-operator/mariadb-operator --set ha.enabled=true
+
Kserve Installation
-------------------