替换指定的DaemonSet
功能介绍
This API is used to replace a DaemonSet object under a specified Namespace.
URI
PUT /apis/apps/v1/namespaces/{namespace}/daemonsets/{name}
参数 |
是否必选 |
描述 |
---|---|---|
name |
Yes |
name of the DaemonSet |
namespace |
Yes |
object name and auth scope, such as for teams and projects |
pretty |
No |
If 'true', then the output is pretty printed. |
请求消息
请求参数:
请求参数的详细描述请参见表2。
请求示例:
{ "kind": "DaemonSet", "apiVersion": "extensions/v1beta1", "metadata": { "name": "ds-12130306", "namespace": "ns-12130306-s", "selfLink": "/apis/extensions/v1beta1/namespaces/ns-12130306-s/daemonsets/ds-12130306", "uid": "dc72a82b-dfb3-11e7-9c19-fa163e2d897b", "resourceVersion": "419052", "generation": 1, "creationTimestamp": "2017-12-13T03:15:24Z", "labels": { "name": "daemonset-test" }, "enable": true }, "spec": { "selector": { "matchLabels": { "name": "daemonset-test" } }, "template": { "metadata": { "creationTimestamp": null, "labels": { "name": "daemonset-test" }, "enable": true }, "spec": { "containers": [ { "name": "dscon-12130306", "image": "172.16.5.235:20202/test/redis:latest", "resources": {}, "terminationMessagePath": "/dev/termination-log", "terminationMessagePolicy": "File", "imagePullPolicy": "IfNotPresent" } ], "restartPolicy": "Always", "terminationGracePeriodSeconds": 30, "dnsPolicy": "ClusterFirst", "securityContext": {}, "schedulerName": "default-scheduler" } }, "updateStrategy": { "type": "OnDelete" }, "templateGeneration": 1, "revisionHistoryLimit": 10 }, "status": { "currentNumberScheduled": 1, "numberMisscheduled": 0, "desiredNumberScheduled": 1, "numberReady": 1, "observedGeneration": 1, "updatedNumberScheduled": 1, "numberAvailable": 1 } }
响应消息
响应参数:
响应参数的详细描述请参见表2。
响应示例:
{ "kind": "DaemonSet", "apiVersion": "extensions/v1beta1", "metadata": { "name": "ds-12130306", "namespace": "ns-12130306-s", "selfLink": "/apis/extensions/v1beta1/namespaces/ns-12130306-s/daemonsets/ds-12130306", "uid": "dc72a82b-dfb3-11e7-9c19-fa163e2d897b", "resourceVersion": "419052", "generation": 1, "creationTimestamp": "2017-12-13T03:15:24Z", "labels": { "name": "daemonset-test" }, "enable": true }, "spec": { "selector": { "matchLabels": { "name": "daemonset-test" } }, "template": { "metadata": { "creationTimestamp": null, "labels": { "name": "daemonset-test" }, "enable": true }, "spec": { "containers": [ { "name": "dscon-12130306", "image": "172.16.5.235:20202/test/redis:latest", "resources": {}, "terminationMessagePath": "/dev/termination-log", "terminationMessagePolicy": "File", "imagePullPolicy": "IfNotPresent" } ], "restartPolicy": "Always", "terminationGracePeriodSeconds": 30, "dnsPolicy": "ClusterFirst", "securityContext": {}, "schedulerName": "default-scheduler" } }, "updateStrategy": { "type": "OnDelete" }, "templateGeneration": 1, "revisionHistoryLimit": 10 }, "status": { "currentNumberScheduled": 1, "numberMisscheduled": 0, "desiredNumberScheduled": 1, "numberReady": 1, "observedGeneration": 1, "updatedNumberScheduled": 1, "numberAvailable": 1 } }
