15 Deleting an OUD Deployment

The following steps can be followed to delete an Oracle Unified Directory (OUD) deployment:
  1. Run the following command to find the deployment release name:
    helm --namespace <namespace> list
    For example:
    helm --namespace oudns list
    The output will look similar to the following:
    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
  2. Delete the deployment using the following command:
    helm uninstall --namespace <namespace> <release>
    For example:
    helm uninstall --namespace oudns oud-ds-rs
    
    The output will look similar to the following:
    release "oud-ds-rs" uninstalled
  3. Run the following command to view the status:
    kubectl --namespace oudns get pod,service,secret,pv,pvc,ingress -o wide
    Initially the pods and persistent volume (PV) and persistent volume claim (PVC) will move to a 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
  4. Run the command again until the pods, PV and PVC disappear.
  5. 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.
  6. Delete the persistent volume contents:

    Note:

    The steps below are not relevant for block storage.
    cd <persistent_volume>/oud_user_projects
    rm -rf *
    For example:
    cd /nfs_volumes/oudpv/oud_user_projects
    rm -rf *