Browse Source
Merge pull request #2795 from gfkse/baremetal-override-calico-hostname
Make Calico nodename overridable on bare metal
pull/2926/head
Aivars Sterns
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
3 additions and
1 deletions
-
roles/network_plugin/calico/defaults/main.yml
-
roles/network_plugin/calico/templates/cni-calico.conflist.j2
|
|
@ -51,3 +51,5 @@ rbac_resources: |
|
|
|
# * interface=INTERFACE-REGEX |
|
|
|
# see https://docs.projectcalico.org/v3.0/reference/node/configuration#ip-autodetection-methods |
|
|
|
# calico_ip_auto_method: "interface=eth.*" |
|
|
|
|
|
|
|
calico_baremetal_nodename: "{{ inventory_hostname }}" |
|
|
@ -6,7 +6,7 @@ |
|
|
|
{% if cloud_provider is defined %} |
|
|
|
"nodename": "{{ calico_kubelet_name.stdout }}", |
|
|
|
{% else %} |
|
|
|
"nodename": "{{ inventory_hostname }}", |
|
|
|
"nodename": "{{ calico_baremetal_nodename }}", |
|
|
|
{% endif %} |
|
|
|
"type": "calico", |
|
|
|
"etcd_endpoints": "{{ etcd_access_addresses }}", |
|
|
|