Browse Source

remove capitalize filter

pull/3236/head
Luis Nunez 6 years ago
parent
commit
6569180654
1 changed files with 2 additions and 2 deletions
  1. 4
      roles/network_plugin/calico/tasks/install.yml

4
roles/network_plugin/calico/tasks/install.yml

@ -97,7 +97,7 @@
},
"spec": {
"cidr": "{{ kube_pods_subnet }}",
"ipipMode": "{{ ipip_mode|capitalize }}",
"ipipMode": "{{ ipip_mode }}",
"natOutgoing": {{ nat_outgoing|default(false) and not peer_with_router|default(false) }} }} " | {{ bin_dir }}/calicoctl create -f -
run_once: true
delegate_to: "{{ groups['kube-master'][0] }}"
@ -186,4 +186,4 @@
register: calico_node_manifests
when:
- inventory_hostname in groups['kube-master']
- rbac_enabled or item.type not in rbac_resources
- rbac_enabled or item.type not in rbac_resources
Loading…
Cancel
Save