vars.yml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. ---
  2. openstack_infra_heat_stack: "{{ opt_infra_heat_stack | default('files/heat_stack.yml') }}"
  3. openstack_network_prefix: "{{ opt_network_prefix | default('openshift-ansible-'+cluster_id) }}"
  4. openstack_network_cidr: "{{ opt_net_cidr | default('192.168.' + ( ( 1048576 | random % 256 ) | string() ) + '.0/24') }}"
  5. openstack_network_external_net: "{{ opt_external_net | default('external') }}"
  6. openstack_floating_ip_pools: "{{ opt_floating_ip_pools | default('external') | oo_split() }}"
  7. openstack_network_dns: "{{ opt_dns | default('8.8.8.8,8.8.4.4') | oo_split() }}"
  8. openstack_ssh_keypair: "{{ opt_keypair | default(lookup('env', 'LOGNAME')+'_key') }}"
  9. openstack_ssh_public_key: "{{ lookup('file', opt_public_key | default('~/.ssh/id_rsa.pub')) }}"
  10. openstack_ssh_access_from: "{{ opt_ssh_from | default('0.0.0.0/0') }}"
  11. openstack_flavor:
  12. master:
  13. ram: "{{ opt_master_flavor_ram | default(2048) }}"
  14. id: "{{ opt_master_flavor_id | default() }}"
  15. include: "{{ opt_master_flavor_include | default() }}"
  16. node:
  17. ram: "{{ opt_node_flavor_ram | default(4096) }}"
  18. id: "{{ opt_node_flavor_id | default() }}"
  19. include: "{{ opt_node_flavor_include | default() }}"
  20. deployment_vars:
  21. origin:
  22. image:
  23. name: "{{ opt_image_name | default('centos-70-raw') }}"
  24. id:
  25. ssh_user: openshift
  26. sudo: yes
  27. online:
  28. image:
  29. name:
  30. id:
  31. ssh_user: root
  32. sudo: no
  33. enterprise:
  34. image:
  35. name: "{{ opt_image_name | default('centos-70-raw') }}"
  36. id:
  37. ssh_user: openshift
  38. sudo: yes