14 Deleting an OUDSM Deployment
The following steps can be followed to delete an Oracle Unified Directory Services Manager
(OUDSM) deployment:
- Run the following command to find the deployment release
name:
For example:helm --namespace <namespace> list
The output will look similar to the following:helm --namespace oudsmns list
NAME NAMESPACE REVISION UPDATED STATUS CHART APP VERSION oudsm oudsmns 2 <DATE> deployed oudsm-0.1 14.1.2.1.0
- Delete the deployment using the following
command:
For example:helm uninstall --namespace <namespace> <release>
The output will look similar to the following:helm uninstall --namespace oudsmns oudsm
release "oudsm" uninstalled
- Run the following command to view the
status:
Initially the pods and persistent volume (PV) and persistent volume claim (PVC) will move to akubectl --namespace oudsmns get pod,service,secret,pv,pvc,ingress -o wide
Terminating
status:NAME READY STATUS RESTARTS AGE IP NODE NOMINATED NODE READINESS GATES pod/oudsm-1 1/1 Terminating 0 24m 10.244.1.180 <Worker Node> <none> <none> NAME TYPE DATA AGE secret/default-token-msmmd kubernetes.io/service-account-token 3 3d20h secret/dockercred kubernetes.io/dockerconfigjson 1 3d20h secret/orclcred kubernetes.io/dockerconfigjson 1 3d20h NAME CAPACITY ACCESS MODES RECLAIM POLICY STATUS CLAIM STORAGECLASS REASON AGE VOLUMEMODE persistentvolume/oudsm-pv 20Gi RWX Delete Terminating oudsmns/oud-ds-rs-pvc manual 24m Filesystem NAME STATUS VOLUME CAPACITY ACCESS MODES STORAGECLASS AGE VOLUMEMODE persistentvolumeclaim/oudsm-pvc Terminating oud-ds-rs-pv 20Gi RWX manual 24m Filesystem
- Run the command again until the pods, PV and PVC disappear.
- If the PV or PVC’s don’t delete, remove them
manually:
kubectl delete pvc oudsm-pvc -n oudsmns kubectl delete pv oudsm-pv -n oudsmns
- Delete the persistent volume
contents:
For example:cd <persistent_volume>/oudsm_user_projects rm -rf *
cd /nfs_volumes/oudsmpv/oudsm_user_projects rm -rf *
- Delete the ingress
controller:
For example:helm delete lbr-nginx -n <namespace>
helm delete lbr-nginx -n mynginxns