k3s/api/examples/pod-list.json

55 lines
1.4 KiB
JSON
Raw Normal View History

2014-06-06 23:40:48 +00:00
{
"kind": "PodList",
"apiVersion": "v1beta1",
2014-06-06 23:40:48 +00:00
"items": [
{
2014-06-09 05:38:45 +00:00
"id": "my-pod-1",
2014-06-06 23:40:48 +00:00
"labels": {
"name": "test-run",
"replicationcontroller": "test-run"
2014-06-06 23:40:48 +00:00
},
"desiredState": {
"manifest": {
"version": "v1beta1",
"id": "my-pod-1",
2014-06-06 23:40:48 +00:00
"containers": [{
"name": "nginx",
2014-06-06 23:40:48 +00:00
"image": "dockerfile/nginx",
"ports": [{
"hostPort": 8080,
"containerPort": 80
}]
}]
2014-06-06 23:40:48 +00:00
}
},
"currentState": {
"host": "host-1"
}
},
{
2014-06-09 05:38:45 +00:00
"id": "my-pod-2",
2014-06-06 23:40:48 +00:00
"labels": {
"name": "test-run",
"replicationcontroller": "test-run"
2014-06-06 23:40:48 +00:00
},
"desiredState": {
"manifest": {
"version": "v1beta1",
"id": "my-pod-2",
2014-06-06 23:40:48 +00:00
"containers": [{
"name": "nginx",
2014-06-06 23:40:48 +00:00
"image": "dockerfile/nginx",
"ports": [{
"hostPort": 8080,
"containerPort": 80
}]
}]
2014-06-06 23:40:48 +00:00
}
},
"currentState": {
"host": "host-2"
}
}
]
}