15 Deleting an OUD Deployment
The following steps can be followed to delete an Oracle Unified Directory (OUD)
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 oudns list
NAME NAMESPACE REVISION UPDATED STATUS CHART APP VERSION oud-ds-rs oudns 1 <DATE> deployed oud-ds-rs-0.2 12.2.1.4.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 oudns oud-ds-rs
release "oud-ds-rs" 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 oudns get pod,service,secret,pv,pvc,ingress -o wide
Terminating
status:NAME READY STATUS RESTARTS AGE IP NODE NOMINATED NODE READINESS GATES pod/oud-ds-rs-0 1/1 Terminating 0 24m 10.244.1.180 <Worker Node> <none> <none> pod/oud-ds-rs-1 1/1 Terminating 0 18m 10.244.1.181 <Worker Node> <none> <none> pod/oud-ds-rs-2 1/1 Terminating 0 12m 10.244.1.182 <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/oud-ds-rs-pv 20Gi RWX Delete Terminating oudns/oud-ds-rs-pvc manual 24m Filesystem NAME STATUS VOLUME CAPACITY ACCESS MODES STORAGECLASS AGE VOLUMEMODE persistentvolumeclaim/oud-ds-rs-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 oud-ds-rs-pvc -n oudns kubectl delete pv oud-ds-rs-pv -n oudns
Note:
If using block storage, you will see a PV and PVC for each pod. Delete all of the PVC’s and PV’s using the above commands. - Delete the persistent volume contents:
Note:
The steps below are not relevant for block storage.
For example:cd <persistent_volume>/oud_user_projects rm -rf *
cd /nfs_volumes/oudpv/oud_user_projects rm -rf *