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