Merge pull request #413 from kubespray/fix_etcd_standalone_play

Fix etcd play to only run on non-k8s-cluster nodes
This commit is contained in:
Smaine Kahlouch 2016-08-18 14:15:15 +02:00 committed by GitHub
commit ac7cc4b7d1

View file

@ -2,11 +2,11 @@
- hosts: all
gather_facts: true
- hosts: etcd
- hosts: etcd:!k8s-cluster
roles:
- { role: kubernetes/preinstall, tags: preinstall }
- { role: etcd, tags: etcd }
- { role: docker, tags: docker }
- { role: etcd, tags: etcd }
- hosts: k8s-cluster
roles: