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.

28 lines
924 B

  1. ## These are for connecting with Openstack and sharing the Keypair
  2. auth_url = "https://10.32.4.182:5000/v3"
  3. region = "RegionOne"
  4. tenant_name = "CloudComp10" # Also known as project
  5. user_name = "CloudComp10"
  6. password = "demo"
  7. domain_name = "default"
  8. # ssh_public_key = "~/.ssh/id_ecdsa.pub"
  9. # These are needed for the internal SSL certificate
  10. # Must use for Pord env but for simplicity removed from here
  11. # client_certificate = "~/.ssh/client.crt"
  12. # client_key = "~/.ssh/client.key"
  13. # cluster_ca_certificate = "~/.ssh/ca.crt"
  14. # Instance Configuration
  15. # num_worker_nodes is < 0 then master will be the worker otherwise master
  16. # is only for control
  17. num_worker_nodes = 3
  18. master_flavor = "m1.small"
  19. worker_flavor = "m1.medium"
  20. os_image = "ubuntu-22.04-jammy-x86_64"
  21. volume_size = 15
  22. dns_servers = ["10.33.16.100"]
  23. floating_ip_pool = "ext_net"
  24. delay_seconds = 120