Files
kubernetes/pkg/api/validation/testdata/v1beta1/invalidPod2.json

29 lines
767 B
JSON

{
"apiVersion": "v1beta1",
"kind": "Pod",
"id": "apache-php",
"desiredState": {
"manifest": {
"version": "v1beta1",
"id": "apache-php",
"containers": [{
"name": "apache-php",
"image": "php:5.6.2-apache",
"ports": [{ "name": "apache", "containerPort": 80, "hostPort":"13380", "protocol":"TCP" }],
"volumeMounts": [{"name": "shared-disk","mountPath": "/var/www/html", "readOnly": false}]
}],
"restartPolicy": {"always": {}},
"dnsPolicy": "ClusterFirst",
"volumes": [{
"name": "shared-disk",
"source": {
"GCEPersistentDisk": {
"path": "shared-disk"
}
}
}]
}
},
"labels": { "name": "apache-php" }
}