Browse Source
using configmap to configure calico cni config (#10177)
using configmap to configure calico cni config (#10177)
Signed-off-by: cyclinder qifeng.guo@daocloud.io Signed-off-by: cyclinder qifeng.guo@daocloud.iopull/10269/head
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 90 additions and 98 deletions
Unified View
Diff Options
-
9roles/network_plugin/calico/tasks/install.yml
-
84roles/network_plugin/calico/templates/calico-config.yml.j2
-
9roles/network_plugin/calico/templates/calico-node.yml.j2
-
86roles/network_plugin/calico/templates/cni-calico.conflist.j2
@ -1,86 +0,0 @@ |
|||||
{ |
|
||||
"name": "{{ calico_cni_name }}", |
|
||||
"cniVersion":"0.3.1", |
|
||||
"plugins":[ |
|
||||
{ |
|
||||
{% if calico_datastore == "kdd" %} |
|
||||
"datastore_type": "kubernetes", |
|
||||
"nodename": "__KUBERNETES_NODE_NAME__", |
|
||||
{% else %} |
|
||||
{% if cloud_provider is defined %} |
|
||||
"nodename": "{{ calico_kubelet_name.stdout }}", |
|
||||
{% else %} |
|
||||
"nodename": "{{ calico_baremetal_nodename }}", |
|
||||
{% endif %} |
|
||||
{% endif %} |
|
||||
"type": "calico", |
|
||||
"log_level": "info", |
|
||||
{% if calico_cni_log_file_path %} |
|
||||
"log_file_path": "{{ calico_cni_log_file_path }}", |
|
||||
{% endif %} |
|
||||
{% if calico_datastore == "etcd" %} |
|
||||
"etcd_endpoints": "{{ etcd_access_addresses }}", |
|
||||
"etcd_cert_file": "{{ calico_cert_dir }}/cert.crt", |
|
||||
"etcd_key_file": "{{ calico_cert_dir }}/key.pem", |
|
||||
"etcd_ca_cert_file": "{{ calico_cert_dir }}/ca_cert.crt", |
|
||||
{% endif %} |
|
||||
{% if calico_ipam_host_local is defined %} |
|
||||
"ipam": { |
|
||||
"type": "host-local", |
|
||||
"subnet": "usePodCidr" |
|
||||
}, |
|
||||
{% else %} |
|
||||
"ipam": { |
|
||||
"type": "calico-ipam", |
|
||||
{% if enable_dual_stack_networks %} |
|
||||
"assign_ipv6": "true", |
|
||||
{% if calico_cni_pool_ipv6 %} |
|
||||
"ipv6_pools": ["{{ calico_pool_cidr_ipv6 | default(kube_pods_subnet_ipv6) }}"], |
|
||||
{% endif %} |
|
||||
{% endif %} |
|
||||
{% if calico_cni_pool %} |
|
||||
"ipv4_pools": ["{{ calico_pool_cidr | default(kube_pods_subnet) }}"], |
|
||||
{% endif %} |
|
||||
"assign_ipv4": "true" |
|
||||
}, |
|
||||
{% endif %} |
|
||||
{% if calico_allow_ip_forwarding %} |
|
||||
"container_settings": { |
|
||||
"allow_ip_forwarding": true |
|
||||
}, |
|
||||
{% endif %} |
|
||||
{% if (calico_feature_control is defined) and (calico_feature_control|length > 0) %} |
|
||||
"feature_control": { |
|
||||
{% for fc in calico_feature_control -%} |
|
||||
{% set fcval = calico_feature_control[fc] -%} |
|
||||
"{{ fc }}": {{ (fcval | string | lower) if (fcval == true or fcval == false) else "\"" + fcval + "\"" }}{{ "," if not loop.last else "" }} |
|
||||
{% endfor -%} |
|
||||
{{- "" }} |
|
||||
}, |
|
||||
{% endif %} |
|
||||
{% if enable_network_policy %} |
|
||||
"policy": { |
|
||||
"type": "k8s" |
|
||||
}, |
|
||||
{% endif %} |
|
||||
{% if calico_mtu is defined and calico_mtu is number %} |
|
||||
"mtu": {{ calico_mtu }}, |
|
||||
{% endif %} |
|
||||
"kubernetes": { |
|
||||
"kubeconfig": "__KUBECONFIG_FILEPATH__" |
|
||||
} |
|
||||
}, |
|
||||
{ |
|
||||
"type":"portmap", |
|
||||
"capabilities": { |
|
||||
"portMappings": true |
|
||||
} |
|
||||
}, |
|
||||
{ |
|
||||
"type":"bandwidth", |
|
||||
"capabilities": { |
|
||||
"bandwidth": true |
|
||||
} |
|
||||
} |
|
||||
] |
|
||||
} |
|
Write
Preview
Loading…
Cancel
Save