Uninstalling Automation assets
Uninstall Automation assets by deleting your AssetRepository
custom resource.
Uninstalling can be done by using one of the following:
Platform UI
OpenShift web console
OpenShift CLI
Platform UI
To delete your AssetRepository CR, log in to Platform UI.
Click the options menu (3-line icon) in the menu banner, and click Administration > Integration capabilities*.
In the Automation assets table row you need to uninstall, click the overflow menu (three-dot icon).
In the dropdown menu, click Delete.
Enter your Automation assets instance name and click Delete.
Your AssetRepository is uninstalled.
To clean up the PVCs, either use the OpenShift console or CLI. To use the OpenShift console:
In the OpenShift console, expand the Storage section in the navigation bar on the left.
Select PersistentVolumeClaims.
Ensure you have selected the namespace that contains the Automation assets you are uninstalling.
Add a Label filter for
app.kubernetes.io/instance=<instance-name>
At the end of the table row for the PVCs, click the overflow menu (three-dot icon), then click Delete PersistentVolumeClaim
Click Delete in the confirmation dialog.
To use the OpenShift CLI:
Run the following command:
oc delete pvc --selector=app.kubernetes.io/component=couchdb,app.kubernetes.io/instance=<instance-name> --namespace=<namespace>
OpenShift web console
To delete your AssetRepository CR using the OpenShift console, navigate to Installed Operators in the OpenShift Console. To get here, expand the Operators section in the navigation bar on the left and select Installed Operators. Ensure you have selected the namespace that contains the Automation assets you are uninstalling.
Click IBM Automation Foundation assets.
Click the Asset Repository tab.
At the end of the Automation assets table row you want to uninstall, click the overflow menu (three-dot icon), then click Delete Asset Repository.
Click Delete in the confirmation dialog.
Your Automation assets is uninstalled.
In the OpenShift console, expand the Storage section in the navigation bar on the left.
Select PersistentVolumeClaims.
Ensure you have selected the namespace that contains the Automation assets you are uninstalling.
Add a Label filter for
app.kubernetes.io/instance=<instance-name>
At the end of the table row for the PVCs, click the overflow menu (three-dot icon), then click Delete PersistentVolumeClaim
Click Delete in the confirmation dialog.
OpenShift CLI
To delete your AssetRepository CR using the
oc
CLI, run the following command:
oc delete assetrepository <instance-name> --namespace=<namespace>
Your Automation assets is uninstalled.
To clean up the PVCs using the
oc
CLI, run:
oc delete pvc --selector=app.kubernetes.io/component=couchdb,app.kubernetes.io/instance=<instance-name> --namespace=<namespace>