Skip to main content
Delete resources by file names, stdin, resources and names, or by resources and label selector

Synopsis

Delete resources by file names, stdin, resources and names, or by resources and label selector. JSON and YAML formats are accepted. Only one type of argument may be specified: file names, resources and names, or resources and label selector. Some resources, such as pods, support graceful deletion. These resources define a default period before they are forcibly terminated (the grace period) but you may override that value with the —grace-period flag, or pass —now to set a grace-period of 1. Because these resources often represent entities in the cluster, deletion may not be acknowledged immediately. If the node hosting a pod is down or cannot reach the API server, termination may take significantly longer than the grace period. To force delete a resource, you must specify the —force flag. Note: only a subset of resources support graceful deletion. In absence of the support, the —grace-period flag is ignored. IMPORTANT: Force deleting pods does not wait for confirmation that the pod’s processes have been terminated, which can leave those processes running until the node detects the deletion and completes graceful deletion. If your processes use shared storage or talk to a remote API and depend on the name of the pod to identify themselves, force deleting those pods may result in multiple processes running on different machines using the same identification which may lead to data corruption or inconsistency. Only force delete pods when you are sure the pod is terminated, or if your application can tolerate multiple copies of the same pod running at once. Also, if you force delete pods, the scheduler may place new pods on those nodes before the node has released those resources and causing those pods to be evicted immediately. Note that the delete command does NOT do resource version checks, so if someone submits an update to a resource right when you submit a delete, their update will be lost along with the rest of the resource. After a CustomResourceDefinition is deleted, invalidation of discovery cache may take up to 6 hours. If you don’t want to wait, you might want to run “kubectl api-resources” to refresh the discovery cache.
datumctl delete ([-f FILENAME] | [-k DIRECTORY] | TYPE [(NAME | -l label | --all)])

Examples

  # Delete a pod using the type and name specified in pod.json
  kubectl delete -f ./pod.json

  # Delete resources from a directory containing kustomization.yaml - e.g. dir/kustomization.yaml
  kubectl delete -k dir

  # Delete resources from all files that end with '.json'
  kubectl delete -f '*.json'

  # Delete a pod based on the type and name in the JSON passed into stdin
  cat pod.json | kubectl delete -f -

  # Delete pods and services with same names "baz" and "foo"
  kubectl delete pod,service baz foo

  # Delete pods and services with label name=myLabel
  kubectl delete pods,services -l name=myLabel

  # Delete a pod with minimal delay
  kubectl delete pod foo --now

  # Force delete a pod on a dead node
  kubectl delete pod foo --force

  # Delete all pods
  kubectl delete pods --all

  # Delete all pods only if the user confirms the deletion
  kubectl delete pods --all --interactive

Options

FlagTypeDescription
--allDelete all resources, in the namespace of the specified resource types.
-A, --all-namespacesIf present, list the requested object(s) across all namespaces. Namespace in current context is ignored even if specified with --namespace.
--cascadestringMust be "background", "orphan", or "foreground". Selects the deletion cascading strategy for the dependents. Defaults to background. (default "background")
--dry-runstringMust be "none", "server", or "client". If client strategy, only print the object that would be sent, without sending it. (default "none")
--field-selectorstringSelector (field query) to filter on, supports =, ==, and !=.
-f, --filenamestringsContaining the resource to delete.
--forceIf true, immediately remove resources from API and bypass graceful deletion. Requires confirmation.
--grace-periodintPeriod of time in seconds given to the resource to terminate gracefully. Ignored if negative. Set to 1 for immediate shutdown. Can only be set to 0 when --force is true. (default -1)
-h, --helpHelp for delete.
--ignore-not-foundTreat “resource not found” as a successful delete. Defaults to true when --all is specified.
-i, --interactiveIf true, delete resource only when user confirms.
-k, --kustomizestringProcess a kustomization directory. This flag can’t be used together with -f or -R.
--nowIf true, resources are signaled for immediate shutdown (same as --grace-period=1).
-o, --outputstringOutput mode. Use "-o name" for shorter output (resource/name).
--rawstringRaw URI to DELETE to the server. Uses the transport specified by the kubeconfig file.
-R, --recursiveProcess the directory used in -f, --filename recursively.
-l, --selectorstringSelector (label query) to filter on, supports =, ==, !=, in, notin.
--timeoutdurationThe length of time to wait before giving up on a delete; zero means determine a timeout from the size of the object.
--waitIf true, wait for resources to be gone before returning. This waits for finalizers. (default true)

Options inherited from parent commands

FlagTypeDescription
--asstringUsername to impersonate for the operation. User could be a regular user or a service account in a namespace.
--as-groupstringArrayGroup to impersonate for the operation. Can be repeated to specify multiple groups.
--as-uidstringUID to impersonate for the operation.
--as-user-extrastringArrayUser extras to impersonate for the operation. Can be repeated to specify multiple values for the same key.
--certificate-authoritystringPath to a cert file for the certificate authority.
--disable-compressionIf true, opt-out of response compression for all requests to the server.
--insecure-skip-tls-verifyIf true, the server’s certificate will not be checked for validity. This will make your HTTPS connections insecure.
--log-flush-frequencydurationMaximum number of seconds between log flushes. (default 5s)
-n, --namespacestringIf present, the namespace scope for this CLI request.
--organizationstringOrganization name.
--platform-wideAccess the platform root instead of a project or organization control plane.
--projectstringProject name.
--request-timeoutstringThe length of time to wait before giving up on a single server request. Non-zero values should contain a corresponding time unit (e.g. 1s, 2m, 3h). A value of zero means don’t timeout requests. (default "0")
-s, --serverstringThe address and port of the Kubernetes API server.
--tls-server-namestringServer name to use for server certificate validation. If not provided, the hostname used to contact the server is used.
--tokenstringBearer token for authentication to the API server.
--userstringThe name of the kubeconfig user to use.
-v, --vLevelNumber for the log level verbosity.
--vmodulemoduleSpecComma-separated list of pattern=N settings for file-filtered logging (only works for the default text log format).

See also

  • datumctl - A CLI for interacting with the Datum platform
Auto generated by spf13/cobra on 24-Feb-2026
Last modified on March 25, 2026