logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Kubectl Delete - Remove Kubernetes Resources | Online Free DevTools by Hexmos

Delete Kubernetes resources efficiently with Kubectl Delete. Manage pods, deployments, nodes, and more using command-line interface. Free online tool, no registration required.

kubectl-delete

Delete Kubernetes resources. More information: https://kubernetes.io/docs/reference/generated/kubectl/kubectl-commands#delete.

  • Delete a specific pod:

kubectl delete {{[po|pod]}} {{pod_name}}

  • Delete a specific deployment:

kubectl delete {{[deploy|deployment]}} {{deployment_name}}

  • Delete a specific node:

kubectl delete {{[no|node]}} {{node_name}}

  • Delete all pods in a specified namespace:

kubectl delete {{[po|pods]}} --all {{[-n|--namespace]}} {{namespace}}

  • Delete all deployments and services in a specified namespace:

kubectl delete {{[deploy|deployment]}},{{[svc|services]}} --all {{[-n|--namespace]}} {{namespace}}

  • Delete all nodes:

kubectl delete {{[no|nodes]}} --all

  • Delete resources defined in a YAML manifest:

kubectl delete {{[-f|--filename]}} {{path/to/manifest.yaml}}

See Also