k3s/api/examples/service-list.json

29 lines
582 B
JSON
Raw Normal View History

2014-06-06 23:40:48 +00:00
{
"kind": "ServiceList",
"apiVersion": "v1beta1",
2014-06-06 23:40:48 +00:00
"items": [
{
"id": "example1",
"port": 8000,
"labels": {
"name": "nginx"
},
2014-06-19 20:27:35 +00:00
"selector": {
"name": "nginx"
}
2014-06-06 23:40:48 +00:00
},
{
"id": "example2",
"port": 8080,
"labels": {
"env": "prod",
"name": "jetty"
},
2014-06-19 20:27:35 +00:00
"selector": {
"env": "prod",
"name": "jetty"
}
2014-06-06 23:40:48 +00:00
}
]
}