Browse Source

fix calico tunl0 routes test (#9061)

Signed-off-by: cyclinder qifeng.guo@daocloud.io
pull/9065/head
Cyclinder 2 years ago
committed by GitHub
parent
commit
e6154998fd
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions
  1. 4
      tests/testcases/040_check-network-adv.yml

4
tests/testcases/040_check-network-adv.yml

@ -2,11 +2,11 @@
- hosts: kube_node - hosts: kube_node
tasks: tasks:
- name: Test tunl0 routes - name: Test tunl0 routes
shell: "set -o pipefail && ! /sbin/ip ro | grep '/26 via' | grep -v tunl0"
shell: "set -o pipefail && ! /sbin/ip ro | grep '/{{ calico_pool_blocksize}} | default(26) via' | grep -v tunl0"
args: args:
executable: /bin/bash executable: /bin/bash
when: when:
- (ipip|default(true) or cloud_provider is defined)
- (calico_ipip_mode is defined and calico_ipip_mode != 'Never' or cloud_provider is defined)
- kube_network_plugin|default('calico') == 'calico' - kube_network_plugin|default('calico') == 'calico'
- hosts: k8s_cluster - hosts: k8s_cluster

Loading…
Cancel
Save