mirror of
https://github.com/openshift/openshift-docs.git
synced 2026-02-05 12:46:18 +01:00
34 lines
1.1 KiB
Plaintext
34 lines
1.1 KiB
Plaintext
// Module included in the following assemblies:
|
|
//
|
|
// * virt/managing-vms/virt-enabling-disabling-vm-delete-protection.adoc
|
|
|
|
:_mod-docs-content-type: PROCEDURE
|
|
[id="virt-enabling-disabling-vm-delete-protection-cli_{context}"]
|
|
= Enabling or disabling VM delete protection by using the CLI
|
|
|
|
[role="_abstract"]
|
|
To prevent the inadvertent deletion of a virtual machine (VM), you can enable VM delete protection by using the command line. You can also disable delete protection for a VM.
|
|
|
|
By default, delete protection is not enabled for VMs. You must set the option for each individual VM.
|
|
|
|
.Prerequisites
|
|
|
|
* You have installed the {oc-first}.
|
|
|
|
.Procedure
|
|
|
|
* Enable delete protection for a VM by running the following command:
|
|
+
|
|
[source,terminal]
|
|
----
|
|
$ oc patch vm <vm_name> --type merge -p '{"metadata":{"labels":{"kubevirt.io/vm-delete-protection":"True"}}}' -n <namespace>
|
|
----
|
|
|
|
* Disable delete protection for a VM by running the following command:
|
|
+
|
|
[source,terminal]
|
|
----
|
|
$ oc patch vm <vm_name> --type json -p '[{"op": "remove", "path": "/metadata/labels/kubevirt.io~1vm-delete-protection"}]' -n <namespace>
|
|
----
|
|
|