删除所有的ReplicationController
功能介绍
该API用于批量删除ReplicationController。
URI
DELETE /api/v1/namespaces/{namespace}/replicationcontrollers
表1描述该API的参数。
参数 |
是否必选 |
描述 |
---|---|---|
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. |
Request
N/A
响应消息
响应参数:
响应参数的详细描述请参见表2。
响应示例:
{ "kind": "ReplicationControllerList", "apiVersion": "v1", "metadata": { "selfLink": "/api/v1/namespaces/delns-12130306/replicationcontrollers", "resourceVersion": "419242" }, "items": [ { "metadata": { "name": "rc-del-12130306", "namespace": "delns-12130306", "selfLink": "/api/v1/namespaces/delns-12130306/replicationcontrollers/rc-del-12130306", "uid": "1465eea3-dfb4-11e7-9c19-fa163e2d897b", "resourceVersion": "419242", "generation": 1, "creationTimestamp": "2017-12-13T03:16:58Z", "labels": { "cce/appgroup": "test" }, "enable": true }, "spec": { "replicas": 0, "selector": { "cce/appgroup": "test" }, "template": { "metadata": { "creationTimestamp": null, "labels": { "cce/appgroup": "test" }, "enable": true }, "spec": { "containers": [ { "name": "rccon-12130306", "image": "172.16.5.235:20202/test/redis:v1", "ports": [ { "containerPort": 6379, "protocol": "TCP" } ], "resources": {}, "terminationMessagePath": "/dev/termination-log", "terminationMessagePolicy": "File", "imagePullPolicy": "IfNotPresent" } ], "restartPolicy": "Always", "terminationGracePeriodSeconds": 30, "dnsPolicy": "ClusterFirst", "securityContext": {}, "schedulerName": "default-scheduler" } } }, "status": { "replicas": 0, "observedGeneration": 1 } } ] }
