列出ReplicationController
功能介绍
该API用于获取ReplicationController列表。
URI
GET /api/v1/replicationcontrollers
表1 描述该API的参数。
参数 |
是否必选 |
描述 |
---|---|---|
pretty |
No |
If 'true', then the output is pretty printed. |
labelSelector |
No |
A selector to restrict the list of returned objects by their labels. Defaults to everything. |
includeUninitialized |
No |
If true, partially initialized resources are included in the response. |
fieldSelector |
No |
A selector to restrict the list of returned objects by their fields. Defaults to everything. |
watch |
No |
Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
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. |
timeoutSeconds |
No |
Timeout for the list/watch call. |
请求消息
N/A
响应消息
响应参数:
响应参数的详细描述请参见表2。
响应示例:
{ "kind": "ReplicationControllerList", "apiVersion": "v1", "metadata": { "selfLink": "/api/v1/replicationcontrollers", "resourceVersion": "591671" }, "items": [ { "metadata": { "name": "rc-test", "namespace": "default", "selfLink": "/api/v1/namespaces/default/replicationcontrollers/rc-test", "uid": "4aabff80-fc1d-11e7-9c3c-fa163eb8ad1a", "resourceVersion": "506966", "generation": 1, "creationTimestamp": "2018-01-18T07:00:39Z", "labels": { "name": "rc-test" }, "enable": true }, "spec": { "replicas": 1, "selector": { "name": "rc-test" }, "template": { "metadata": { "creationTimestamp": null, "labels": { "name": "rc-test" }, "enable": true }, "spec": { "containers": [ { "name": "pod-test", "image": "172.16.5.235:20202/test/nginx", "resources": {}, "terminationMessagePath": "/dev/termination-log", "terminationMessagePolicy": "File", "imagePullPolicy": "Always" } ], "restartPolicy": "Always", "terminationGracePeriodSeconds": 30, "dnsPolicy": "ClusterFirst", "securityContext": {}, "imagePullSecrets": [ { "name": "default-secret" } ], "schedulerName": "default-scheduler" } } }, "status": { "replicas": 1, "fullyLabeledReplicas": 1, "readyReplicas": 1, "availableReplicas": 1, "observedGeneration": 1 } } ] }
