combine bootstrap options, add xenial support

This commit is contained in:
Brandon B. Jozsa
2016-09-06 10:04:41 -04:00
parent 37057ba969
commit 2606e8e1c8
11 changed files with 31 additions and 13 deletions

View File

@@ -1,13 +1,19 @@
---
- hosts: all
gather_facts: true
gather_facts: false
roles:
- bootstrap-os
tags:
- bootstrap-os
- hosts: etcd:!k8s-cluster
gather_facts: true
roles:
- { role: kubernetes/preinstall, tags: preinstall }
- { role: etcd, tags: etcd }
- hosts: k8s-cluster
gather_facts: true
roles:
- { role: kubernetes/preinstall, tags: preinstall }
- { role: etcd, tags: etcd }
@@ -15,14 +21,17 @@
- { role: network_plugin, tags: network }
- hosts: kube-master
gather_facts: true
roles:
- { role: kubernetes/preinstall, tags: preinstall }
- { role: kubernetes/master, tags: master }
- hosts: k8s-cluster
gather_facts: true
roles:
- { role: dnsmasq, tags: dnsmasq }
- hosts: kube-master[0]
gather_facts: true
roles:
- {role: kubernetes-apps, tags: apps}