Browse Source

calico_pool_blocksize must be cast as well in assertion when defined (#8321)

* calico_pool_blocksize must be cast as string in assertion when defined

* Cast as int rather than string
pull/8331/head
emiran-orange 2 years ago
committed by GitHub
parent
commit
2b5c185826
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. 2
      roles/network_plugin/calico/tasks/check.yml

2
roles/network_plugin/calico/tasks/check.yml

@ -53,7 +53,7 @@
- name: "Check if inventory match current cluster configuration" - name: "Check if inventory match current cluster configuration"
assert: assert:
that: that:
- calico_pool_conf.spec.blockSize|string == (calico_pool_blocksize | default(kube_network_node_prefix | string))
- calico_pool_conf.spec.blockSize|int == (calico_pool_blocksize | default(kube_network_node_prefix) | int)
- calico_pool_conf.spec.cidr == (calico_pool_cidr | default(kube_pods_subnet)) - calico_pool_conf.spec.cidr == (calico_pool_cidr | default(kube_pods_subnet))
- not calico_pool_conf.spec.ipipMode is defined or calico_pool_conf.spec.ipipMode == calico_ipip_mode - not calico_pool_conf.spec.ipipMode is defined or calico_pool_conf.spec.ipipMode == calico_ipip_mode
- not calico_pool_conf.spec.vxlanMode is defined or calico_pool_conf.spec.vxlanMode == calico_vxlan_mode - not calico_pool_conf.spec.vxlanMode is defined or calico_pool_conf.spec.vxlanMode == calico_vxlan_mode

Loading…
Cancel
Save