Skip to content

Commit

Permalink
Make Calico nodename overridable on bare metal
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Mohr <[email protected]>
  • Loading branch information
danielm0hr committed May 14, 2018
1 parent 02cd541 commit 476b14b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions roles/network_plugin/calico/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}"
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}",
Expand Down

0 comments on commit 476b14b

Please sign in to comment.