Files
website/docs/user-guide/pods/pod-sample.json
T
Jared 55d549283f Remove commas at the end of "containerPort"
"containerPort": 8000, should be "containerPort": 8000
2016-07-20 15:32:50 -07:00

33 lines
501 B
JSON

{
"kind": "Pod",
"apiVersion": "v1",
"metadata": {
"name": "redis-django",
"labels": {
"app": "webapp"
}
},
"spec": {
"containers": [
{
"name": "key-value-store",
"image": "redis",
"ports": [
{
"containerPort": 6379
}
]
},
{
"name": "frontend",
"image": "django",
"ports": [
{
"containerPort": 8000
}
]
}
]
}
}