Import from Container Engine docs, addition of Tabs functionality, various link fixes

This commit is contained in:
johndmulhausen
2016-03-16 15:54:34 -07:00
parent 3a2026677d
commit c8dd8b8831
56 changed files with 1974 additions and 34 deletions
+32
View File
@@ -0,0 +1,32 @@
{
"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,
}
]
}
]
}
}