github.com/SUSE/skuba@v1.4.17/ci/infra/vmware/terraform.tfvars.example (about) 1 # datastore to use in vSphere 2 # EXAMPLE: 3 # vsphere_datastore = "STORAGE-0" 4 vsphere_datastore = "" 5 6 # datacenter to use in vSphere 7 # EXAMPLE: 8 # vsphere_datacenter = "DATACENTER" 9 vsphere_datacenter = "" 10 11 # network to use in vSphere 12 # EXAMPLE: 13 # vsphere_network = "VM Network" 14 vsphere_network = "" 15 16 # resource pool the machines will be running in 17 # EXAMPLE: 18 # vsphere_resource_pool = "CaaSP_RP" 19 vsphere_resource_pool = "" 20 21 # template name the machines will be copied from 22 # EXAMPLE: 23 # template_name = "SLES15-SP1-cloud-init" 24 template_name = "" 25 26 # IMPORTANT: Replace by "efi" string in case your template was created by using EFI firmware 27 firmware = "bios" 28 29 # prefix that all of the booted machines will use 30 # IMPORTANT: please enter unique identifier below as value of 31 # stack_name variable to not interfere with other deployments 32 stack_name = "caasp-v4" 33 34 # Number of master nodes 35 masters = 1 36 37 # Optional: Size of the root disk in GB on master node 38 master_disk_size = 50 39 40 # Number of worker nodes 41 workers = 2 42 43 # Optional: Size of the root disk in GB on worker node 44 worker_disk_size = 40 45 46 # Optional: Define the repositories to use 47 # EXAMPLE: 48 # repositories = { 49 # repository1 = "http://repo.example.com/repository1/" 50 # repository2 = "http://repo.example.com/repository2/" 51 # } 52 repositories = {} 53 54 # Minimum required packages. Do not remove them. 55 # Feel free to add more packages 56 packages = [ 57 ] 58 59 # ssh keys to inject into all the nodes 60 # EXAMPLE: 61 # authorized_keys = [ 62 # "ssh-rsa <key-content>" 63 # ] 64 authorized_keys = [] 65 66 # IMPORTANT: Replace these ntp servers with ones from your infrastructure 67 ntp_servers = ["0.novell.pool.ntp.org", "1.novell.pool.ntp.org", "2.novell.pool.ntp.org", "3.novell.pool.ntp.org"] 68 69 # Enable CPI integration with vSphere 70 #cpi_enable = true 71 72 # Set node's hostname from DHCP server 73 #hostname_from_dhcp = false