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.

60 lines
1.2 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. "machines": {
  17. "master-0": {
  18. "node_type": "master",
  19. "size": "n1-standard-2",
  20. "zone": "us-central1-a",
  21. "additional_disks": {},
  22. "boot_disk": {
  23. "image_name": "ubuntu-os-cloud/ubuntu-1804-bionic-v20201116",
  24. "size": 50
  25. }
  26. },
  27. "worker-0": {
  28. "node_type": "worker",
  29. "size": "n1-standard-8",
  30. "zone": "us-central1-a",
  31. "additional_disks": {
  32. "extra-disk-1": {
  33. "size": 100
  34. }
  35. },
  36. "boot_disk": {
  37. "image_name": "ubuntu-os-cloud/ubuntu-1804-bionic-v20201116",
  38. "size": 50
  39. }
  40. },
  41. "worker-1": {
  42. "node_type": "worker",
  43. "size": "n1-standard-8",
  44. "zone": "us-central1-a",
  45. "additional_disks": {
  46. "extra-disk-1": {
  47. "size": 100
  48. }
  49. },
  50. "boot_disk": {
  51. "image_name": "ubuntu-os-cloud/ubuntu-1804-bionic-v20201116",
  52. "size": 50
  53. }
  54. }
  55. }
  56. }