Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove all occurences of KubdeDB as it is not used nor supported anymore #2141

Open
wants to merge 2 commits into
base: development/2.6
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/scripts/end2end/configs/zenkoversion.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,6 @@ spec:
exporter:
image: '${REDIS_EXPORTER_IMAGE}'
tag: '${REDIS_EXPORTER_TAG}'
kubedb: '${REDIS_KUBEDB_TAG}'
defaults:
backbeatConcurrency:
lifecycleBucketProcessor: 30
Expand All @@ -144,4 +143,4 @@ spec:
cruiseControl:
limitMemory: 3Gi
featureFlags:
backbeatGCVaultAuthorized: true
backbeatGCVaultAuthorized: true
36 changes: 23 additions & 13 deletions docs/docsource/installation/install/install_xdm.rst
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,6 @@ Deploy |product| Operator
.. parsed-literal::

/srv/scality/metalk8s-{{version-number}}/solutions.sh import --archive $ZENKO_BASE_ISO
sed "s/SOLUTION_ENV/zenko/g" /srv/scality/zenko-base-|version|/deploy/kubedb.yaml | kubectl apply -f -
kubectl -n zenko rollout status --timeout 10m deploy kubedb-operator
kubectl apply -f /srv/scality/zenko-base-|version|/deploy/kubedb-catalogs.yaml
sed "s/SOLUTION_ENV/zenko/g" /srv/scality/zenko-base-|version|/deploy/kafka.yaml | kubectl apply -f -
sed "s/SOLUTION_ENV/zenko/g" /srv/scality/zenko-base-|version|/deploy/zookeeper.yaml | kubectl apply -f -

Expand Down Expand Up @@ -225,6 +222,21 @@ Deploy |product|

#. Refer to *MetalK8s Operation* to create volumes for |product|.

#. Create a secret for MongoDB credentials:

.. parsed-literal::

cat <<EOF | kubectl apply -n zenko -f -
apiVersion: v1
kind: Secret
metadata:
name: mongodb-db-creds
type: Opaque
stringData:
mongodb-username: admin
mongodb-password: password
EOF

#. Create a resource for |product|:

.. parsed-literal::
Expand All @@ -238,17 +250,15 @@ Deploy |product|
version: |version|
replicas: 1
mongodb:
KillianG marked this conversation as resolved.
Show resolved Hide resolved
provider: KubeDB
persistence:
volumeClaimTemplate:
size: 300Gi
storageClassName: sc-300-g
databaseName: eb1e786d-da1e-3fc5-83d2-46f083ab9764
endpoints:
- data-db-mongodb-sharded-mongos-0.data-db-mongodb-sharded.zenko.svc:27017
passwordKey: mongodb-password
provider: External
userSecretName: mongodb-db-creds
usernameKey: mongodb-username
redis:
provider: KubeDB
KillianG marked this conversation as resolved.
Show resolved Hide resolved
persistence:
volumeClaimTemplate:
size: 10Gi
storageClassName: sc-10-g
provider: Zenko
kafka:
provider: Managed
persistence:
Expand Down
1 change: 0 additions & 1 deletion docs/docsource/installation/upgrade/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,3 @@ Upgrade
:maxdepth: 2

upgrade_zenko
xdm_migrate_from_kubedb_to_bitnami
Loading
Loading