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.

65 lines
1.4 KiB

  1. prefix = "default"
  2. zone = "ch-gva-2"
  3. inventory_file = "inventory.ini"
  4. ssh_public_keys = [
  5. # Put your public SSH key here
  6. "ssh-rsa I-did-not-read-the-docs",
  7. "ssh-rsa I-did-not-read-the-docs 2",
  8. ]
  9. machines = {
  10. "master-0" : {
  11. "node_type" : "master",
  12. "size" : "standard.medium",
  13. "boot_disk" : {
  14. "image_name" : "Linux Ubuntu 20.04 LTS 64-bit",
  15. "root_partition_size" : 50,
  16. "node_local_partition_size" : 0,
  17. "ceph_partition_size" : 0
  18. }
  19. },
  20. "worker-0" : {
  21. "node_type" : "worker",
  22. "size" : "standard.large",
  23. "boot_disk" : {
  24. "image_name" : "Linux Ubuntu 20.04 LTS 64-bit",
  25. "root_partition_size" : 50,
  26. "node_local_partition_size" : 0,
  27. "ceph_partition_size" : 0
  28. }
  29. },
  30. "worker-1" : {
  31. "node_type" : "worker",
  32. "size" : "standard.large",
  33. "boot_disk" : {
  34. "image_name" : "Linux Ubuntu 20.04 LTS 64-bit",
  35. "root_partition_size" : 50,
  36. "node_local_partition_size" : 0,
  37. "ceph_partition_size" : 0
  38. }
  39. },
  40. "worker-2" : {
  41. "node_type" : "worker",
  42. "size" : "standard.large",
  43. "boot_disk" : {
  44. "image_name" : "Linux Ubuntu 20.04 LTS 64-bit",
  45. "root_partition_size" : 50,
  46. "node_local_partition_size" : 0,
  47. "ceph_partition_size" : 0
  48. }
  49. }
  50. }
  51. nodeport_whitelist = [
  52. "0.0.0.0/0"
  53. ]
  54. ssh_whitelist = [
  55. "0.0.0.0/0"
  56. ]
  57. api_server_whitelist = [
  58. "0.0.0.0/0"
  59. ]