vars.yml 2.0 KB

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