Uninstalling OKD Virtualization using the CLI
You can uninstall OKD Virtualization by using the OKD CLI.
Prerequisites
You must have OKD Virtualization 4.10 installed.
You must delete all virtual machines, virtual machine instances, and data volumes.
Attempting to uninstall OKD Virtualization without deleting these objects results in failure.
Deleting OKD Virtualization
You can delete OKD Virtualization by using the CLI.
Prerequisites
Install the OpenShift CLI (
oc
).Access to a OKD Virtualization cluster using an account with
cluster-admin
permissions.
When you delete the subscription of the OKD Virtualization operator in the OLM by using the CLI, the |
Procedure
Delete the
HyperConverged
custom resource:$ oc delete HyperConverged kubevirt-hyperconverged -n openshift-cnv
Delete the subscription of the OKD Virtualization operator in the Operator Lifecycle Manager (OLM):
$ oc delete subscription kubevirt-hyperconverged -n openshift-cnv
Set the cluster service version (CSV) name for OKD Virtualization as an environment variable:
$ CSV_NAME=$(oc get csv -n openshift-cnv -o=custom-columns=:metadata.name)
Delete the CSV from the OKD Virtualization cluster by specifying the CSV name from the previous step:
$ oc delete csv ${CSV_NAME} -n openshift-cnv
OKD Virtualization is uninstalled when a confirmation message indicates that the CSV was deleted successfully:
Example output
clusterserviceversion.operators.coreos.com "kubevirt-hyperconverged-operator.v4.10.0" deleted