vars.yml 784 B

123456789101112131415161718
  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. enterprise: "{{ deployment_rhel7_ent_base }}"
  15. openshift-enterprise: "{{ deployment_rhel7_ent_base }}"
  16. atomic-enterprise: "{{ deployment_rhel7_ent_base }}"