summaryrefslogtreecommitdiffstats
path: root/playbooks/gce/os3-master/config.yml
diff options
context:
space:
mode:
authorThomas Wiest <twiest@redhat.com>2014-10-30 16:40:52 -0400
committerThomas Wiest <twiest@redhat.com>2014-10-30 16:40:52 -0400
commit317d20d2cd7847ac295e63015c540a882f77964e (patch)
tree1c1e004039a2f42730b385633462197a5c463e30 /playbooks/gce/os3-master/config.yml
parentd57f8d6968f0b580d3201df197eda98ed5f8fe19 (diff)
downloadopenshift-317d20d2cd7847ac295e63015c540a882f77964e.tar.gz
openshift-317d20d2cd7847ac295e63015c540a882f77964e.tar.bz2
openshift-317d20d2cd7847ac295e63015c540a882f77964e.tar.xz
openshift-317d20d2cd7847ac295e63015c540a882f77964e.zip
cleaned up unused GCE host types, changed back to using gce.ini, and added a better ssh detection on launch.
Diffstat (limited to 'playbooks/gce/os3-master/config.yml')
-rw-r--r--playbooks/gce/os3-master/config.yml41
1 files changed, 0 insertions, 41 deletions
diff --git a/playbooks/gce/os3-master/config.yml b/playbooks/gce/os3-master/config.yml
deleted file mode 100644
index 0d44ada5a..000000000
--- a/playbooks/gce/os3-master/config.yml
+++ /dev/null
@@ -1,41 +0,0 @@
-- name: "populate oo_hosts_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_hosts_to_config"
- with_items: "{{ oo_host_group_exp | default('') }}"
- when: oo_host_group_exp is defined
-
-- name: "Gather facts for minions in {{ oo_env }}"
- hosts: "tag_env-host-type-{{ oo_env }}-os3-minion"
- connection: ssh
- user: root
-
-- name: "Set OO sepcific facts on localhost (for later use)"
- hosts: localhost
- gather_facts: no
- tasks:
- - name: Setting oo_minion_ips fact on localhost
- set_fact:
- oo_minion_ips: "{{ hostvars
- | oo_select_keys(groups['tag_env-host-type-' + oo_env + '-os3-minion'])
- | oo_collect(attribute='ansible_eth0.ipv4.address') }}"
- when: groups['tag_env-host-type-' + oo_env + '-os3-minion'] is defined
-
-- name: "Configure instances"
- hosts: oo_hosts_to_config
- connection: ssh
- user: root
- vars_files:
- - vars.yml
- roles:
- - ../../../roles/base_os
- - ../../../roles/repos
- - ../../../roles/etcd
- - {
- role: ../../../roles/kubernetes_apiserver,
- oo_minion_ips: "{{ hostvars['localhost'].oo_minion_ips | default(['']) }}"
- }
- - ../../../roles/kubernetes_controller_manager
- - ../../../roles/pods