diff options
author | Thomas Wiest <twiest@users.noreply.github.com> | 2015-04-10 11:33:25 -0400 |
---|---|---|
committer | Thomas Wiest <twiest@users.noreply.github.com> | 2015-04-10 11:33:25 -0400 |
commit | dd0f997a77fa88291bbd0ec3d59ba0ad369d9fec (patch) | |
tree | 5c5aad99026f1b1d289d0b5597fb5f596b4906c7 /playbooks/libvirt/openshift-master/config.yml | |
parent | 914b4c41d4a5f25f9ea850d21a50926148ae4bf1 (diff) | |
parent | 9fbec064d28a72963b1566258b4bcabcd63b2c23 (diff) | |
download | openshift-dd0f997a77fa88291bbd0ec3d59ba0ad369d9fec.tar.gz openshift-dd0f997a77fa88291bbd0ec3d59ba0ad369d9fec.tar.bz2 openshift-dd0f997a77fa88291bbd0ec3d59ba0ad369d9fec.tar.xz openshift-dd0f997a77fa88291bbd0ec3d59ba0ad369d9fec.zip |
Merge pull request #141 from lhuard1A/virt
Add libvirt as a provider for openshift-ansible
Diffstat (limited to 'playbooks/libvirt/openshift-master/config.yml')
-rw-r--r-- | playbooks/libvirt/openshift-master/config.yml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/playbooks/libvirt/openshift-master/config.yml b/playbooks/libvirt/openshift-master/config.yml new file mode 100644 index 000000000..dd95fd57f --- /dev/null +++ b/playbooks/libvirt/openshift-master/config.yml @@ -0,0 +1,21 @@ +- name: master/config.yml, populate oo_masters_to_config host group if needed + hosts: localhost + gather_facts: no + tasks: + - name: "Evaluate oo_host_group_exp if it's set" + add_host: + name: '{{ item }}' + groups: oo_masters_to_config + with_items: "{{ oo_host_group_exp | default('') }}" + when: oo_host_group_exp is defined + +- name: Configure instances + hosts: oo_masters_to_config + vars: + openshift_hostname: '{{ ansible_default_ipv4.address }}' + vars_files: + - vars.yml + roles: + - openshift_master + - pods + - os_env_extras |