34 lines
795 B
Django/Jinja
34 lines
795 B
Django/Jinja
{
|
|
"name": "cni0",
|
|
"cniVersion":"0.3.1",
|
|
"plugins":[
|
|
{
|
|
"type": "flannel",
|
|
"delegate": {
|
|
"type": "calico",
|
|
"include_default_routes": true,
|
|
"etcd_endpoints": "{{ etcd_access_addresses }}",
|
|
"etcd_key_file": "{{ canal_cert_dir }}/key.pem",
|
|
"etcd_cert_file": "{{ canal_cert_dir }}/cert.crt",
|
|
"etcd_ca_cert_file": "{{ canal_cert_dir }}/ca_cert.crt",
|
|
"log_level": "info",
|
|
{% if calico_cni_log_file_path %}
|
|
"log_file_path": "{{ calico_cni_log_file_path }}",
|
|
{% endif %}
|
|
"policy": {
|
|
"type": "k8s"
|
|
},
|
|
"kubernetes": {
|
|
"kubeconfig": "__KUBECONFIG_FILEPATH__"
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"type":"portmap",
|
|
"capabilities":{
|
|
"portMappings":true
|
|
}
|
|
}
|
|
]
|
|
}
|