Browse Source

Merge pull request #413 from kubespray/fix_etcd_standalone_play

Fix etcd play to only run on non-k8s-cluster nodes
pull/418/head
Smaine Kahlouch 8 years ago
committed by GitHub
parent
commit
ac7cc4b7d1
1 changed files with 2 additions and 2 deletions
  1. 4
      cluster.yml

4
cluster.yml

@ -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:

Loading…
Cancel
Save