Skip to content

Commit

Permalink
fix: use cleanup.sh script to uninstall in sm clusters
Browse files Browse the repository at this point in the history
  • Loading branch information
CFSNM committed Nov 25, 2024
1 parent d47c4e7 commit 0b36425
Showing 1 changed file with 3 additions and 57 deletions.
60 changes: 3 additions & 57 deletions ods_ci/tasks/Resources/RHODS_OLM/uninstall/uninstall.robot
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,10 @@ Uninstalling RHODS Operator
... Uninstall RHODS

Uninstall RHODS
${new_operator} = Is RHODS Version Greater Or Equal Than 2.0.0
IF "${cluster_type}" == "managed" and ${new_operator} == $False
IF "${cluster_type}" == "managed"
Uninstall RHODS In OSD
ELSE IF "${cluster_type}" == "selfmanaged" and ${new_operator} == $False
ELSE IF "${cluster_type}" == "selfmanaged"
Uninstall RHODS In Self Managed Cluster
ELSE IF ${new_operator}
Uninstall RHODS V2
ELSE
Fail Kindly provide supported cluster type
END
Expand All @@ -45,7 +42,7 @@ Uninstall RHODS In Self Managed Cluster
ELSE IF "${INSTALL_TYPE}" == "OperatorHub"
Uninstall RHODS In Self Managed Cluster For Operatorhub
ELSE
FAIL Provided install type is not supported
FAIL Provided install type is not supported
END

RHODS Operator Should Be Uninstalled
Expand All @@ -69,57 +66,6 @@ Uninstall RHODS In Self Managed Cluster For Operatorhub
Verify Project Does Not Exists ${NOTEBOOKS_NAMESPACE}
${return_code} ${output} Run And Return Rc And Output oc delete namespace ${OPERATOR_NAMESPACE}

Uninstall RHODS V2
[Documentation] Keyword to uninstall the version 2 of the RHODS operator in Self-Managed
Log To Console message=Deleting DSC CR From Cluster
${return_code} ${output} Run And Return Rc And Output
... oc get DataScienceCluster --all-namespaces -o custom-columns=:metadata.name --ignore-not-found | xargs -I {} oc patch DataScienceCluster {} --type=merge -p '{"metadata": {"finalizers":null}}' || true #robocop:disable
${return_code} ${output} Run And Return Rc And Output
... oc delete datasciencecluster --all --ignore-not-found
Should Be Equal As Integers ${return_code} 0 msg=Error deleting DataScienceCluster CR
Log To Console message=Deleting DSCi CR From Cluster
${return_code} ${output} Run And Return Rc And Output
... oc get DSCInitialization --all-namespaces -o custom-columns=:metadata.name --ignore-not-found | xargs -I {} oc patch DSCInitialization {} --type=merge -p '{"metadata": {"finalizers":null}}' || true #robocop:disable
${return_code} ${output} Run And Return Rc And Output
... oc delete dscinitialization --all --ignore-not-found
Should Be Equal As Integers ${return_code} 0 msg=Error deleting DSCInitialization CR
Log To Console message=Deleting Operator Subscription From Cluster
${return_code} ${subscription_name} Run And Return Rc And Output
... oc get subscription -n ${OPERATOR_NAMESPACE} --no-headers | awk '{print $1}'
IF "${return_code}" == "0" and "${subscription_name}" != "${EMPTY}"
${return_code} ${csv_name} Run And Return Rc And Output
... oc get subscription ${subscription_name} -n ${OPERATOR_NAMESPACE} -ojson | jq '.status.currentCSV' | tr -d '"'
IF "${return_code}" == "0" and "${csv_name}" != "${EMPTY}"
${return_code} ${output} Run And Return Rc And Output
... oc delete clusterserviceversion ${csv_name} -n ${OPERATOR_NAMESPACE} --ignore-not-found
Should Be Equal As Integers ${return_code} 0 msg=Error deleting RHODS CSV ${csv_name}
END
${return_code} ${output} Run And Return Rc And Output
... oc delete subscription ${subscription_name} -n ${OPERATOR_NAMESPACE} --ignore-not-found
Should Be Equal As Integers ${return_code} 0 msg=Error deleting RHODS subscription
END
Log To Console message=Deleting Operator CSV From Cluster
${return_code} ${output} Run And Return Rc And Output
... oc delete clusterserviceversion opendatahub-operator.1.18.0 -n openshift-operators --ignore-not-found
Log To Console message=Deleting Operator Catalog From Cluster
${return_code} ${output} Run And Return Rc And Output
... oc delete CatalogSource rhoai-catalog-dev -n openshift-marketplace --ignore-not-found # robocop: disable
${return_code} ${output} Run And Return Rc And Output
... oc delete CatalogSource addon-managed-odh-catalog -n openshift-marketplace --ignore-not-found # robocop: disable
Log To Console message=Deleting Operator Group From Cluster
${return_code} ${output} Run And Return Rc And Output
... oc delete operatorgroup --all -n ${OPERATOR_NAMESPACE} --ignore-not-found
Should Be Equal As Integers ${return_code} 0 msg=Error deleting operatorgroup
Log To Console message=Deleting Operator and it's associate namepsace
${return_code} ${output} Run And Return Rc And Output oc delete ns -l opendatahub.io/generated-namespace --ignore-not-found
Verify Project Does Not Exists ${APPLICATIONS_NAMESPACE}
Verify Project Does Not Exists ${MONITORING_NAMESPACE}
Verify Project Does Not Exists ${NOTEBOOKS_NAMESPACE}
IF "${OPERATOR_NAMESPACE}" != "openshift-marketplace"
${return_code} ${output} Run And Return Rc And Output oc delete namespace ${OPERATOR_NAMESPACE} --ignore-not-found
Verify Project Does Not Exists ${OPERATOR_NAMESPACE}
END

Uninstall Service Mesh Operator CLI
[Documentation] Keyword to uninstall the Service Mesh Operator
Log To Console message=Deleting ServiceMeshControlPlane CR From Cluster
Expand Down

0 comments on commit 0b36425

Please sign in to comment.