mirror of https://github.com/k3s-io/k3s
36 lines
655 B
JSON
36 lines
655 B
JSON
{
|
|
"kind": "Pod",
|
|
"apiVersion": "v1",
|
|
"metadata": {
|
|
"name": "apache-php",
|
|
"labels": {
|
|
"name": "apache-php"
|
|
}
|
|
},
|
|
"spec": {
|
|
"volumes": [
|
|
"name": "shared-disk"
|
|
],
|
|
"containers": [
|
|
{
|
|
"name": "apache-php",
|
|
"image": "gcr.io/fake_project/fake_image:fake_tag",
|
|
"ports": [
|
|
{
|
|
"name": "apache",
|
|
"hostPort": 13380,
|
|
"containerPort": 80,
|
|
"protocol": "TCP"
|
|
}
|
|
],
|
|
"volumeMounts": [
|
|
{
|
|
"name": "shared-disk",
|
|
"mountPath": "/var/www/html"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
}
|