Listing ReplicationControllers
Function
This API is used to obtain the ReplicationController list.
URI
GET /api/v1/replicationcontrollers
Table 1 describes the parameters of this API.
| Parameter | Mandatory | Description |
|---|---|---|
| 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. |
Request
N/A
Response
Response parameters:
For the description about response parameters, see Table 2.
Example response:
{
"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
}
}
]
} Status Code
Table 2 describes the status code of this API.
| Status Code | Description |
|---|---|
| 200 | This operation succeeds, and a group of ReplicationController resource objects is returned. |
For the description about error status codes, see Status Code.
Last Article: Listing ReplicationControllers in a Specified Namespace
Next Article: Updating a Specified ReplicationController
Did this article solve your problem?
Thank you for your score!Your feedback would help us improve the website.