Merge pull request #3022 from alvistack/weave-2.4.0

weave: Upgrade to 2.4.0
This commit is contained in:
Rong Zhang
2018-08-09 15:01:05 +08:00
committed by GitHub
8 changed files with 136 additions and 143 deletions

View File

@@ -1,4 +1,5 @@
---
- name: Weave | Start Resources
kube:
name: "weave-net"
@@ -9,13 +10,12 @@
state: "latest"
when: inventory_hostname == groups['kube-master'][0]
- name: "Weave | wait for weave to become available"
- name: Weave | Wait for Weave to become available
uri:
url: http://127.0.0.1:6784/status
return_content: yes
register: weave_status
retries: 180
delay: 5
until: "{{ weave_status.status == 200 and
'Status: ready' in weave_status.content }}"
until: "{{ weave_status.status == 200 and 'Status: ready' in weave_status.content }}"
when: inventory_hostname == groups['kube-master'][0]