diff options
author | Jason DeTiberus <jdetiber@redhat.com> | 2015-02-17 17:18:20 -0500 |
---|---|---|
committer | Jason DeTiberus <jdetiber@redhat.com> | 2015-02-24 23:09:23 -0500 |
commit | 114fcaac2a8f8e3d68baf8945f8991b1da9763ee (patch) | |
tree | 200b3d3bea0316a1281658c54cc966c48e043704 /playbooks/gce/openshift-master/config.yml | |
parent | 50f53296253953fb2d3fff6bd7d7d3e538b9430b (diff) | |
download | openshift-114fcaac2a8f8e3d68baf8945f8991b1da9763ee.tar.gz openshift-114fcaac2a8f8e3d68baf8945f8991b1da9763ee.tar.bz2 openshift-114fcaac2a8f8e3d68baf8945f8991b1da9763ee.tar.xz openshift-114fcaac2a8f8e3d68baf8945f8991b1da9763ee.zip |
add symlinks for filter_plugins and roles to playbook directories
- allows playbooks to be able to discover roles and filter_plugins without
having to manipulate the environment or use relative paths.
Diffstat (limited to 'playbooks/gce/openshift-master/config.yml')
-rw-r--r-- | playbooks/gce/openshift-master/config.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/playbooks/gce/openshift-master/config.yml b/playbooks/gce/openshift-master/config.yml index cfdb5bbbe..fa5649306 100644 --- a/playbooks/gce/openshift-master/config.yml +++ b/playbooks/gce/openshift-master/config.yml @@ -30,12 +30,12 @@ vars_files: - vars.yml roles: - - ../../../roles/base_os - - ../../../roles/repos + - base_os + - repos - { - role: ../../../roles/openshift_master, + role: openshift_master, oo_node_ips: "{{ hostvars['localhost'].oo_node_ips | default(['']) }}", oo_bind_ip: "{{ hostvars[inventory_hostname].ansible_eth0.ipv4.address | default(['']) }}", oo_public_ip: "{{ gce_public_ip }}" } - - ../../../roles/pods + - pods |