Blocksize for calico default pool should be configurable (#5198)
This commit is contained in:
committed by
Kubernetes Prow Robot
parent
2fc02ed456
commit
f18e77f1db
@ -11,6 +11,9 @@
|
||||
# add default ippool name
|
||||
# calico_pool_name: "default-pool"
|
||||
|
||||
# add default ippool blockSize (defaults kube_network_node_prefix)
|
||||
# calico_pool_blocksize: 24
|
||||
|
||||
# add default ippool CIDR (must be inside kube_pods_subnet, defaults to kube_pods_subnet otherwise)
|
||||
# calico_pool_cidr: 1.2.3.4/5
|
||||
|
||||
|
@ -128,7 +128,7 @@
|
||||
"name": "{{ calico_pool_name }}",
|
||||
},
|
||||
"spec": {
|
||||
"blockSize": "{{ kube_network_node_prefix }}",
|
||||
"blockSize": "{{ calico_pool_blocksize | default(kube_network_node_prefix) }}",
|
||||
"cidr": "{{ calico_pool_cidr | default(kube_pods_subnet) }}",
|
||||
"ipipMode": "{{ ipip_mode }}",
|
||||
"natOutgoing": {{ nat_outgoing|default(false) and not peer_with_router|default(false) }} }} " | {{ bin_dir }}/calicoctl.sh apply -f -
|
||||
|
Reference in New Issue
Block a user