k3s/api/examples/pod.json

33 lines
604 B
JSON
Raw Normal View History

2014-06-06 23:40:48 +00:00
{
"kind": "Pod",
"apiVersion": "v1beta1",
2014-06-06 23:40:48 +00:00
"id": "php",
"desiredState": {
"manifest": {
"version": "v1beta1",
"id": "php",
2014-06-06 23:40:48 +00:00
"containers": [{
2014-07-03 05:35:50 +00:00
"name": "nginx",
2014-06-06 23:40:48 +00:00
"image": "dockerfile/nginx",
"ports": [{
"containerPort": 80,
"hostPort": 8080
2014-07-03 05:35:50 +00:00
}],
"livenessProbe": {
"enabled": true,
"type": "http",
"initialDelaySeconds": 30,
"httpGet": {
"path": "/index.html",
"port": "8080"
}
}
2014-06-06 23:40:48 +00:00
}]
}
},
"labels": {
"name": "foo"
}
}
2014-08-06 16:57:00 +00:00