Delete All DaemonSets
Function
This API is used to delete collection of DaemonSet.
URI
DELETE /apis/apps/v1/namespaces/{namespace}/daemonsets (for clusters of v1.9 and later)
DELETE /apis/extensions/v1beta1/namespaces/{namespace}/daemonsets (for clusters of v1.15 and earlier)
Table 1 describes the parameters of this API.
|
Parameter |
Mandatory |
Description |
|---|---|---|
|
namespace |
Yes |
Object name and auth scope, such as for teams and projects. |
|
pretty |
No |
If 'true', then the output is pretty printed. |
|
fieldSelector |
No |
A selector to restrict the list of returned objects by their fields. Defaults to everything. |
|
includeUninitialized |
No |
If true, partially initialized resources are included in the response. |
|
labelSelector |
No |
A selector to restrict the list of returned objects by their labels. Defaults to everything. |
|
resourceVersion |
No |
When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it is 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv. |
|
timeoutSeconds |
No |
Timeout for the list/watch call. |
|
watch |
No |
Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Request
Request parameters:
For the description about request parameters, see Table 2.
Example request:
- Deleting only the DaemonSet (the pod is not deleted):
{ "Kind": "DeleteOptions", "apiVersion": "v1", "propagationPolicy": "Orphan" } - Deleting the pod and then the DaemonSet:
{ "kind": "DeleteOptions", "apiVersion": "v1", "propagationPolicy": "Foreground" } - Deleting the DaemonSet and then the pod:
{ "kind": "DeleteOptions", "apiVersion": "v1", "propagationPolicy": "Background" }
Response
Response parameters:
For the description about response parameters, see Table 2.
Example response:
{
"kind": "DaemonSetList",
"apiVersion": "extensions/v1beta1",
"metadata": {
"selfLink": "/apis/extensions/v1beta1/namespaces/ns-12130306-s/daemonsets",
"resourceVersion": "419060"
},
"items": []
}
Status Code
Table 2 describes the status code of this API.
For the description about error status codes, see Status Code.
Last Article: Deleting a Specified DaemonSet
Next Article: Reading a Specified DaemonSet
Did this article solve your problem?
Thank you for your score!Your feedback would help us improve the website.