删除所有的Deployment
功能介绍
This API is used to delete collection of Deployment.
URI
DELETE /apis/apps/v1/namespaces/{namespace}/deployments
参数 |
是否必选 |
描述 |
---|---|---|
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's 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. |
请求消息
请求参数:
请求参数的详细描述请参见表2。
请求示例:
- 只删除Deployment(对应ReplicaSet和Pod不删除)
{ "Kind": "DeleteOptions", "apiVersion": "v1", "propagationPolicy": "Orphan" }
- 前台级联删除(按照Pod->ReplicaSet->Deployment的顺序进行删除)
{ "kind": "DeleteOptions", "apiVersion": "v1", "propagationPolicy": "Foreground" }
- 后台级联删除(按照Deployment->ReplicaSet->Pod的顺序进行删除)
{ "kind": "DeleteOptions", "apiVersion": "v1", "propagationPolicy": "Background" }
响应消息
响应参数:
响应参数的详细描述请参见表2。
响应示例:
{ "kind": "DeploymentList", "apiVersion": "apps/v1beta1", "metadata": { "selfLink": "/apis/apps/v1beta1/namespaces/ns-12130306-s/deployments", "resourceVersion": "418745" }, "items": null }
