Replacing the Status of a Specified Pod
Function
This API is used to replace the status of a pod in a specified namespace, that is, to change the status value of the pod.
URI
PUT /api/v1/namespaces/{namespace}/pods/{name}/status
Table 1 describes the parameters of this API.
Request
Request parameters:
For the description about request parameters, see Table 3.
Example request:
{
"kind": "Pod",
"apiVersion": "v1",
"metadata": {
"name": "hello-world",
"namespace": "default",
"selfLink": "/api/v1/namespaces/default/pods/hello-world",
"uid": "84973056-5d3b-11e6-aeb9-286ed488fafe",
"resourceVersion": "3636",
"creationTimestamp": "2016-08-08T07:41:29Z",
"labels": {
"name": "brace"
}
},
"status": {
"phase": "Running",
"conditions": [
{
"type": "Ready",
"status": "True",
"lastProbeTime": null,
"lastTransitionTime": "2016-08-08T07:41:29Z"
}
],
"hostIP": "127.0.0.1",
"podIP": "172.16.0.4",
"startTime": "2016-08-08T07:41:29Z"
}
}
Response
Response parameters:
For the description about response parameters, see Request.
Example response:
{
"kind": "Pod",
"apiVersion": "v1",
"metadata": {
"name": "hello-world",
"namespace": "default",
"selfLink": "/api/v1/namespaces/default/pods/hello-world/status",
"uid": "84973056-5d3b-11e6-aeb9-286ed488fafe",
"resourceVersion": "3641",
"creationTimestamp": "2016-08-08T07:41:29Z",
"labels": {
"name": "brace"
}
},
"spec": {
"volumes": [
{
"name": "test",
"emptyDir": {}
},
{
"name": "default-token-test2",
"secret": {
"secretName": "default-token-test2"
}
}
],
"containers": [
{
"name": "hello-world",
"image": "beego:v1",
"env": [
{
"name": "cy",
"value": "cy"
}
],
"resources": {},
"volumeMounts": [
{
"name": "test",
"mountPath": "/tmp/foo"
},
{
"name": "default-token-test2",
"readOnly": true,
"mountPath": "/var/run/secrets/kubernetes.io/serviceaccount"
}
],
"terminationMessagePath": "/dev/termination-log",
"imagePullPolicy": "IfNotPresent"
}
],
"restartPolicy": "Always",
"terminationGracePeriodSeconds": 30,
"dnsPolicy": "ClusterFirst",
"serviceAccountName": "default",
"serviceAccount": "default",
"nodeName": "127.0.0.1",
"securityContext": {}
},
"status": {
"phase": "Running",
"conditions": [
{
"type": "Ready",
"status": "True",
"lastProbeTime": null,
"lastTransitionTime": "2016-08-08T07:41:29Z"
}
],
"hostIP": "127.0.0.1",
"podIP": "172.16.0.4",
"startTime": "2016-08-08T07:41:29Z"
}
}
Status Code
Table 2 describes the status code of this API.
|
Status Code |
Description |
|---|---|
|
200 |
This operation succeeds, and the JSON of a Pod object is returned. |
For the description about error status codes, see Status Code.
Last Article: Replacing a Specified Pod
Next Article: Listing All Pods in a Specified Namespace
Did this article solve your problem?
Thank you for your score!Your feedback would help us improve the website.