You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

63 lines
1.3 KiB

  1. {
  2. "gcp_project_id": "GCP_PROJECT_ID",
  3. "region": "us-central1",
  4. "ssh_pub_key": "~/.ssh/id_rsa.pub",
  5. "keyfile_location": "service-account.json",
  6. "prefix": "development",
  7. "ssh_whitelist": [
  8. "1.2.3.4/32"
  9. ],
  10. "api_server_whitelist": [
  11. "1.2.3.4/32"
  12. ],
  13. "nodeport_whitelist": [
  14. "1.2.3.4/32"
  15. ],
  16. "ingress_whitelist": [
  17. "0.0.0.0/0"
  18. ],
  19. "machines": {
  20. "master-0": {
  21. "node_type": "master",
  22. "size": "n1-standard-2",
  23. "zone": "us-central1-a",
  24. "additional_disks": {},
  25. "boot_disk": {
  26. "image_name": "ubuntu-os-cloud/ubuntu-2004-focal-v20220118",
  27. "size": 50
  28. }
  29. },
  30. "worker-0": {
  31. "node_type": "worker",
  32. "size": "n1-standard-8",
  33. "zone": "us-central1-a",
  34. "additional_disks": {
  35. "extra-disk-1": {
  36. "size": 100
  37. }
  38. },
  39. "boot_disk": {
  40. "image_name": "ubuntu-os-cloud/ubuntu-2004-focal-v20220118",
  41. "size": 50
  42. }
  43. },
  44. "worker-1": {
  45. "node_type": "worker",
  46. "size": "n1-standard-8",
  47. "zone": "us-central1-a",
  48. "additional_disks": {
  49. "extra-disk-1": {
  50. "size": 100
  51. }
  52. },
  53. "boot_disk": {
  54. "image_name": "ubuntu-os-cloud/ubuntu-2004-focal-v20220118",
  55. "size": 50
  56. }
  57. }
  58. }
  59. }