Deleting All Pods
Function
This API is used to delete all pods under a specified namespace.
URI
DELETE /api/v1/namespaces/{namespace}/pods
| Parameter | Description |
|---|---|
| namespace | Object name and auth scope, such as for teams and projects. |
| Parameter | Mandatory | Description |
|---|---|---|
| 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
N/A
Response
Response parameters
For the description about response parameters, see Table 72.
Example response
{
"kind": "PodList",
"apiVersion": "v1",
"metadata": {
"selfLink": "/api/v1/namespaces/namespace-test/pods",
"resourceVersion": "5035636"
},
"items": []
} Last Article: Deleting a Pod
Next Article: Deployment
Did this article solve your problem?
Thank you for your score!Your feedback would help us improve the website.