summaryrefslogtreecommitdiffstats
path: root/playbooks/gce/os3-router/config.yml
diff options
context:
space:
mode:
authorKenny Woodson <kwoodson@redhat.com>2014-09-16 13:15:48 -0400
committerKenny Woodson <kwoodson@redhat.com>2014-09-16 13:15:48 -0400
commit5994dee9a8b3b1ee97f9e3b3529fd32ffb896187 (patch)
tree4c17abdd1e5b39e845d33d7d970ac216a82d766d /playbooks/gce/os3-router/config.yml
downloadopenshift-5994dee9a8b3b1ee97f9e3b3529fd32ffb896187.tar.gz
openshift-5994dee9a8b3b1ee97f9e3b3529fd32ffb896187.tar.bz2
openshift-5994dee9a8b3b1ee97f9e3b3529fd32ffb896187.tar.xz
openshift-5994dee9a8b3b1ee97f9e3b3529fd32ffb896187.zip
Initial Commit. Sharing is caring
Diffstat (limited to 'playbooks/gce/os3-router/config.yml')
-rw-r--r--playbooks/gce/os3-router/config.yml17
1 files changed, 17 insertions, 0 deletions
diff --git a/playbooks/gce/os3-router/config.yml b/playbooks/gce/os3-router/config.yml
new file mode 100644
index 000000000..8103faa5f
--- /dev/null
+++ b/playbooks/gce/os3-router/config.yml
@@ -0,0 +1,17 @@
+- name: "populate oo_hosts_to_config host group if needed"
+ hosts: localhost
+ gather_facts: no
+ tasks:
+ - name: Evaluate oo_host_group_exp
+ add_host: "name={{ item }} groups=oo_hosts_to_config"
+ with_items: "{{ oo_host_group_exp | default('') }}"
+ when: oo_host_group_exp is defined
+
+- name: "Configure instances"
+ hosts: oo_hosts_to_config
+ connection: ssh
+ user: root
+ vars_files:
+ - vars.yml
+ roles:
+ - ../../../roles/base_os