Fix default value for standalone tests (#6043)

This commit is contained in:
Florian Ruynat 2020-04-29 15:34:24 +02:00 committed by GitHub
parent a3d3f27aaa
commit a468954519
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,8 +4,8 @@
- name: Test tunl0 routes - name: Test tunl0 routes
shell: "! /sbin/ip ro | grep '/26 via' | grep -v tunl0" shell: "! /sbin/ip ro | grep '/26 via' | grep -v tunl0"
when: when:
- (ipip|default(false) or cloud_provider is defined) - (ipip|default(true) or cloud_provider is defined)
- kube_network_plugin == 'calico' - kube_network_plugin|default('calico') == 'calico'
- hosts: k8s-cluster - hosts: k8s-cluster
vars: vars:
@ -18,7 +18,7 @@
shell: "ethtool --offload flannel.1 rx off tx off" shell: "ethtool --offload flannel.1 rx off tx off"
ignore_errors: true ignore_errors: true
when: when:
- kube_network_plugin == 'flannel' - kube_network_plugin|default('calico') == 'flannel'
- name: Force binaries directory for Container Linux by CoreOS and Flatcar - name: Force binaries directory for Container Linux by CoreOS and Flatcar
set_fact: set_fact: