c9290182be
When running legacy calicoctl we do not specify calico hostname in calico-node container thus we should not specify it in CNI config. Also move 'legacy_calicoctl' set_fact task to the top.
26 lines
721 B
Django/Jinja
26 lines
721 B
Django/Jinja
{
|
|
"name": "calico-k8s-network",
|
|
{% if not legacy_calicoctl %}
|
|
"hostname": "{{ inventory_hostname }}",
|
|
{% endif %}
|
|
"type": "calico",
|
|
"etcd_endpoints": "{{ etcd_access_endpoint }}",
|
|
"etcd_cert_file": "{{ etcd_cert_dir }}/node.pem",
|
|
"etcd_key_file": "{{ etcd_cert_dir }}/node-key.pem",
|
|
"etcd_ca_cert_file": "{{ etcd_cert_dir }}/ca.pem",
|
|
"log_level": "info",
|
|
"ipam": {
|
|
"type": "calico-ipam"
|
|
},
|
|
{% if enable_network_policy is defined and enable_network_policy == True %}
|
|
"policy": {
|
|
"type": "k8s"
|
|
},
|
|
{% endif %}
|
|
{% if calico_mtu is defined and calico_mtu is number %}
|
|
"mtu": {{ calico_mtu }},
|
|
{% endif %}
|
|
"kubernetes": {
|
|
"kubeconfig": "{{ kube_config_dir }}/node-kubeconfig.yaml"
|
|
}
|
|
}
|