列出指定Namespace下的Service
功能介绍
该API用于列出指定Namespace下的Service对象。
URI
GET /api/v1/namespaces/{namespace}/services
表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. |
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. |
namespace |
Yes |
Object name and auth scope, such as for teams and projects. |
includeUninitialized |
No |
If true, partially initialized resources are included in the response. |
请求消息
N/A
响应消息
响应参数:
响应参数如表2所示。
参数 |
参数类型 |
描述 |
---|---|---|
kind |
String |
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. |
apiVersion |
String |
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. |
metadata |
metadata object |
- |
items |
Object |
List of services,具体请参见表2。 |
参数 |
参数类型 |
描述 |
---|---|---|
selfLink |
String |
SelfLink is a URL representing this object. Populated by the system. Read-only. |
resourceVersion |
String |
String that identifies the server's internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. |
响应示例:
{ "kind": "ServiceList", "apiVersion": "v1", "metadata": { "selfLink": "/api/v1/namespaces/default/services", "resourceVersion": "1230" }, "items": [ { "metadata": { "name": "kubernetes", "namespace": "default", "selfLink": "/api/v1/namespaces/default/services/kubernetes", "uid": "a50a2352-5d0b-11e6-aeb9-286ed488fafe", "resourceVersion": "8", "creationTimestamp": "2016-08-08T01:58:47Z", "labels": { "component": "apiserver", "provider": "kubernetes" } }, "spec": { "ports": [ { "name": "https", "protocol": "TCP", "port": 443, "targetPort": 443 } ], "clusterIP": "10.0.0.1", "type": "ClusterIP", "sessionAffinity": "None" }, "status": { "loadBalancer": {} } }, { "metadata": { "name": "myapp", "namespace": "default", "selfLink": "/api/v1/namespaces/default/services/myapp", "uid": "58b5ca7c-5d12-11e6-aeb9-286ed488fafe", "resourceVersion": "1204", "creationTimestamp": "2016-08-08T02:46:46Z" }, "spec": { "ports": [ { "protocol": "TCP", "port": 80, "targetPort": 80 } ], "selector": { "app": "example" }, "clusterIP": "10.0.0.139", "type": "ClusterIP", "sessionAffinity": "None" }, "status": { "loadBalancer": {} } } ] }
