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.

32 lines
795 B

  1. # your Kubernetes cluster name here
  2. cluster_name = "mycluster"
  3. # Your Packet project ID. See https://support.packet.com/kb/articles/api-integrations
  4. packet_project_id = "Example-API-Token"
  5. # The public SSH key to be uploaded into authorized_keys in bare metal Packet nodes provisioned
  6. # leave this value blank if the public key is already setup in the Packet project
  7. # Terraform will complain if the public key is setup in Packet
  8. public_key_path = "~/.ssh/id_rsa.pub"
  9. # cluster location
  10. facilities = ["ewr1"]
  11. # standalone etcds
  12. number_of_etcd = 0
  13. plan_etcd = "t1.small.x86"
  14. # masters
  15. number_of_k8s_masters = 1
  16. number_of_k8s_masters_no_etcd = 0
  17. plan_k8s_masters = "t1.small.x86"
  18. plan_k8s_masters_no_etcd = "t1.small.x86"
  19. # nodes
  20. number_of_k8s_nodes = 2
  21. plan_k8s_nodes = "t1.small.x86"