vars.yml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. ---
  2. default_pool_path: "{{ lookup('env','HOME') }}/libvirt-storage-pool-openshift-ansible"
  3. libvirt_storage_pool_path: "{{ lookup('oo_option', 'libvirt_storage_pool_path') | default(default_pool_path, True) }}"
  4. libvirt_storage_pool: "{{ lookup('oo_option', 'libvirt_storage_pool') | default('openshift-ansible', True) }}"
  5. libvirt_network: "{{ lookup('oo_option', 'libvirt_network') | default('openshift-ansible', True) }}"
  6. libvirt_instance_memory_mib: "{{ lookup('oo_option', 'libvirt_instance_memory_mib') | default(1024, True) }}"
  7. libvirt_instance_vcpu: "{{ lookup('oo_option', 'libvirt_instance_vcpu') | default(2, True) }}"
  8. libvirt_uri: "{{ lookup('oo_option', 'libvirt_uri') | default('qemu:///system', True) }}"
  9. debug_level: 2
  10. # Automatic download of the qcow2 image for RHEL cannot be done directly from the RedHat portal because it requires authentication.
  11. # The default value of image_url for enterprise and openshift-enterprise deployment types below won't work.
  12. deployment_rhel7_ent_base:
  13. image:
  14. url: "{{ lookup('oo_option', 'image_url') |
  15. default('https://access.cdn.redhat.com//content/origin/files/sha256/25/25f880767ec6bf71beb532e17f1c45231640bbfdfbbb1dffb79d2c1b328388e0/rhel-guest-image-7.2-20151102.0.x86_64.qcow2', True) }}"
  16. name: "{{ lookup('oo_option', 'image_name') |
  17. default('rhel-guest-image-7.2-20151102.0.x86_64.qcow2', True) }}"
  18. sha256: "{{ lookup('oo_option', 'image_sha256') |
  19. default('25f880767ec6bf71beb532e17f1c45231640bbfdfbbb1dffb79d2c1b328388e0', True) }}"
  20. compression: ""
  21. ssh_user: openshift
  22. become: yes
  23. deployment_vars:
  24. origin:
  25. image:
  26. url: "{{ lookup('oo_option', 'image_url') |
  27. default('http://cloud.centos.org/centos/7/images/CentOS-7-x86_64-GenericCloud-1602.qcow2.xz', True) }}"
  28. compression: "{{ lookup('oo_option', 'image_compression') |
  29. default('xz', True) }}"
  30. name: "{{ lookup('oo_option', 'image_name') |
  31. default('CentOS-7-x86_64-GenericCloud.qcow2', True) }}"
  32. sha256: "{{ lookup('oo_option', 'image_sha256') |
  33. default('dd0f5e610e7c5ffacaca35ed7a78a19142a588f4543da77b61c1fb0d74400471', True) }}"
  34. ssh_user: openshift
  35. become: yes
  36. enterprise: "{{ deployment_rhel7_ent_base }}"
  37. openshift-enterprise: "{{ deployment_rhel7_ent_base }}"
  38. atomic-enterprise: "{{ deployment_rhel7_ent_base }}"