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.

46 lines
742 B

  1. prefix = "default"
  2. zone = "hel1"
  3. network_zone = "eu-central"
  4. inventory_file = "inventory.ini"
  5. ssh_public_keys = [
  6. # Put your public SSH key here
  7. "ssh-rsa I-did-not-read-the-docs",
  8. "ssh-rsa I-did-not-read-the-docs 2",
  9. ]
  10. ssh_private_key_path = "~/.ssh/id_rsa"
  11. machines = {
  12. "master-0" : {
  13. "node_type" : "master",
  14. "size" : "cx21",
  15. "image" : "ubuntu-20.04",
  16. },
  17. "worker-0" : {
  18. "node_type" : "worker",
  19. "size" : "cx21",
  20. "image" : "ubuntu-20.04",
  21. },
  22. "worker-1" : {
  23. "node_type" : "worker",
  24. "size" : "cx21",
  25. "image" : "ubuntu-20.04",
  26. }
  27. }
  28. nodeport_whitelist = [
  29. "0.0.0.0/0"
  30. ]
  31. ingress_whitelist = [
  32. "0.0.0.0/0"
  33. ]
  34. ssh_whitelist = [
  35. "0.0.0.0/0"
  36. ]
  37. api_server_whitelist = [
  38. "0.0.0.0/0"
  39. ]