Add etcd role dependency on kube user to avoid etcd role failure when running scale.yml with a fresh node. (#3240) (#4479)

This commit is contained in:
Christoffer Anselm 2019-04-30 13:01:36 +02:00 committed by Kubernetes Prow Robot
parent 15eb7db36d
commit dcd9c9509b

View file

@ -3,3 +3,6 @@ dependencies:
- role: adduser
user: "{{ addusers.etcd }}"
when: not (ansible_os_family in ['CoreOS', 'Container Linux by CoreOS', "ClearLinux"] or is_atomic)
- role: adduser
user: "{{ addusers.kube }}"
when: not (ansible_os_family in ['CoreOS', 'Container Linux by CoreOS', "ClearLinux"] or is_atomic)