From 958650b8236f0ab0ac686dbae190cb2666437cc0 Mon Sep 17 00:00:00 2001 From: Jeff Geerling Date: Sun, 3 Jun 2018 20:39:50 -0500 Subject: [PATCH] Change order when applying flannel templates. --- tasks/master-setup.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/master-setup.yml b/tasks/master-setup.yml index 3b4a1bb..89c1922 100644 --- a/tasks/master-setup.yml +++ b/tasks/master-setup.yml @@ -30,8 +30,8 @@ - name: Configure Flannel networking. command: "{{ item }}" with_items: - - kubectl apply -f https://raw.githubusercontent.com/coreos/flannel/master/Documentation/kube-flannel.yml - kubectl apply -f https://raw.githubusercontent.com/coreos/flannel/master/Documentation/k8s-manifests/kube-flannel-rbac.yml + - kubectl apply -f https://raw.githubusercontent.com/coreos/flannel/master/Documentation/kube-flannel.yml register: flannel_result changed_when: "'created' in flannel_result.stdout"