123456789101112131415161718192021222324252627282930313233343536 |
- {
- "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"
- }
- ]
- }
- ]
- }
- }
|