1
0
mirror of https://github.com/openshift/openshift-docs.git synced 2026-02-05 12:46:18 +01:00
Files
openshift-docs/modules/nw-multus-remove-pod.adoc
2024-05-10 20:08:00 +00:00

32 lines
742 B
Plaintext

// Module included in the following assemblies:
//
// * networking/multiple_networks/removing-pod.adoc
// * microshift_networking/microshift_multiple_networks/microshift-cni-multus-using.adoc
:_mod-docs-content-type: PROCEDURE
[id="nw-multus-remove-pod_{context}"]
= Removing a pod from an additional network
You can remove a pod from an additional network only by deleting the pod.
.Prerequisites
* An additional network is attached to the pod.
* Install the OpenShift CLI (`oc`).
* Log in to the cluster.
.Procedure
* To delete the pod, enter the following command:
+
[source,terminal]
----
$ oc delete pod <name> -n <namespace>
----
+
--
* `<name>` is the name of the pod.
* `<namespace>` is the namespace that contains the pod.
--