17 lines
382 B
Django/Jinja
17 lines
382 B
Django/Jinja
{
|
|
"name": "calico-k8s-network",
|
|
"type": "calico",
|
|
"etcd_endpoints": "{{ etcd_access_endpoint }}",
|
|
"log_level": "info",
|
|
"ipam": {
|
|
"type": "calico-ipam"
|
|
},
|
|
{% if enable_network_policy is defined and enable_network_policy == True %}
|
|
"policy": {
|
|
"type": "k8s"
|
|
},
|
|
{% endif %}
|
|
"kubernetes": {
|
|
"kubeconfig": "{{ kube_config_dir }}/node-kubeconfig.yaml"
|
|
}
|
|
}
|