k3s/api/examples/pod-list.json

51 lines
1.3 KiB
JSON
Raw Normal View History

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": "testRun",
"replicationController": "testRun"
},
"desiredState": {
"manifest": {
"version": "v1beta1",
"id": "my-pod-1",
2014-06-06 23:40:48 +00:00
"containers": [{
"image": "dockerfile/nginx",
"ports": [{
"hostPort": 8080,
"containerPort": 80
}]
}
}
},
"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": "testRun",
"replicationController": "testRun"
},
"desiredState": {
"manifest": {
"version": "v1beta1",
"id": "my-pod-2",
2014-06-06 23:40:48 +00:00
"containers": [{
"image": "dockerfile/nginx",
"ports": [{
"hostPort": 8080,
"containerPort": 80
}]
}
}
},
"currentState": {
"host": "host-2"
}
}
]
}