获取指定的StatefulSet
功能介绍
This API is used to read a StatefulSet object under a specified Namespace.
URI
GET /apis/apps/v1/namespaces/{namespace}/statefulsets/{name}
参数 |
是否必选 |
描述 |
---|---|---|
name |
Yes |
Name of the StatefulSet. |
namespace |
Yes |
Object name and auth scope, such as for teams and projects. |
pretty |
No |
If 'true', then the output is pretty printed. |
exact |
No |
Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. |
export |
No |
Should this value be exported. Export strips fields that a user cannot specify. |
请求消息
N/A
响应消息
响应参数:
响应参数的详细描述请参见表2。
响应示例:
{ "kind": "StatefulSet", "apiVersion": "apps/v1beta1", "metadata": { "name": "mysql", "generateName": "sz", "namespace": "default", "selfLink": "/apis/apps/v1beta1/namespaces/default/statefulsets/mysql", "uid": "f5cf50f5-23fc-11e7-9c83-fa163ec08232", "resourceVersion": "1808945", "generation": 1, "creationTimestamp": "2017-04-18T06:05:02Z", "labels": { "app": "mysql" } }, "spec": { "replicas": 1, "selector": { "matchLabels": { "app": "mysql" } }, "template": { "metadata": { "name": "-sz", "creationTimestamp": null, "labels": { "app": "mysql" } }, "spec": { "containers": [ { "name": "container01", "image": "10.154.52.159:443/test/nginx:latest", "ports": [ { "containerPort": 80, "protocol": "TCP" } ], "resources": {}, "terminationMessagePath": "/dev/termination-log", "imagePullPolicy": "IfNotPresent" } ], "restartPolicy": "Always", "terminationGracePeriodSeconds": 30, "dnsPolicy": "ClusterFirst", "securityContext": {} } }, "volumeClaimTemplates": [ { "metadata": { "name": "db", "creationTimestamp": null }, "spec": { "accessModes": [ "ReadWriteOnce" ], "resources": { "requests": { "storage": "1Gi" } } }, "status": { "phase": "Pending" } } ], "serviceName": "mysql-service" }, "status": { "replicas": 1 } }
