invalidPod2.json 659 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "kind": "Pod",
  3. "apiVersion": "v1",
  4. "metadata": {
  5. "name": "apache-php",
  6. "labels": {
  7. "name": "apache-php"
  8. }
  9. },
  10. "spec": {
  11. "volumes": [{
  12. "name": "shared-disk"
  13. }],
  14. "containers": [
  15. {
  16. "name": "apache-php",
  17. "image": "gcr.io/fake_project/fake_image:fake_tag",
  18. "ports": [
  19. {
  20. "name": "apache",
  21. "hostPort": "13380",
  22. "containerPort": 80,
  23. "protocol": "TCP"
  24. }
  25. ],
  26. "volumeMounts": [
  27. {
  28. "name": "shared-disk",
  29. "mountPath": "/var/www/html"
  30. }
  31. ]
  32. }
  33. ]
  34. }
  35. }