vars.yml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. ssh_user: openshift
  18. sudo: yes
  19. deployment_vars:
  20. origin:
  21. image:
  22. url: "{{ lookup('oo_option', 'image_url') |
  23. default('http://cloud.centos.org/centos/7/images/CentOS-7-x86_64-GenericCloud.qcow2.xz', True) }}"
  24. compression: "{{ lookup('oo_option', 'image_compression') |
  25. default('xz', True) }}"
  26. name: "{{ lookup('oo_option', 'image_name') |
  27. default('CentOS-7-x86_64-GenericCloud.qcow2', True) }}"
  28. sha256: "{{ lookup('oo_option', 'image_sha256') |
  29. default('9461006300d65172f5668d8875f2aad7b54f7ba4e9c5435d65a84a5a2d66e39b', True) }}"
  30. ssh_user: openshift
  31. sudo: yes
  32. online:
  33. image:
  34. url:
  35. name:
  36. sha256:
  37. ssh_user: root
  38. sudo: no
  39. enterprise: "{{ deployment_rhel7_ent_base }}"
  40. openshift-enterprise: "{{ deployment_rhel7_ent_base }}"
  41. atomic-enterprise: "{{ deployment_rhel7_ent_base }}"