33 lines
501 B
JSON
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
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
}
|