vars.yml 883 B

1234567891011121314151617181920212223
  1. ---
  2. debug_level: 2
  3. deployment_rhel7_ent_base:
  4. image: "{{ lookup('oo_option', 'image_name') | default('rhel-7', True) }}"
  5. machine_type: "{{ lookup('oo_option', 'machine_type') | default('n1-standard-1', True) }}"
  6. ssh_user: "{{ lookup('env', 'gce_ssh_user') | default(ansible_ssh_user, true) }}"
  7. become: yes
  8. deployment_vars:
  9. origin:
  10. image: "{{ lookup('oo_option', 'image_name') | default('centos-7', True) }}"
  11. machine_type: "{{ lookup('oo_option', 'machine_type') | default('n1-standard-1', True) }}"
  12. ssh_user: "{{ lookup('env', 'gce_ssh_user') | default(ansible_ssh_user, true) }}"
  13. become: yes
  14. online:
  15. image: libra-rhel7
  16. machine_type: n1-standard-1
  17. ssh_user: root
  18. become: no
  19. enterprise: "{{ deployment_rhel7_ent_base }}"
  20. openshift-enterprise: "{{ deployment_rhel7_ent_base }}"
  21. atomic-enterprise: "{{ deployment_rhel7_ent_base }}"