mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2025-12-14 13:54:37 +03:00
Fix ansible syntax to avoid ansible warnings (#3499)
This commit is contained in:
committed by
k8s-ci-robot
parent
cdce8c81da
commit
dd5327ef9e
@@ -17,5 +17,5 @@
|
||||
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]
|
||||
|
||||
Reference in New Issue
Block a user