Merge pull request #941 from adidenko/use_ansible_hostname_in_calico
Switch to ansible_hostname in calico
This commit is contained in:
commit
a627299468
3 changed files with 4 additions and 4 deletions
|
@ -7,7 +7,7 @@ Wants=docker.socket
|
||||||
[Service]
|
[Service]
|
||||||
User=root
|
User=root
|
||||||
PermissionsStartOnly=true
|
PermissionsStartOnly=true
|
||||||
{% if inventory_hostname in groups['kube-node'] and peer_with_router|default(false)%}
|
{% if inventory_hostname in groups['k8s-cluster'] and peer_with_router|default(false)%}
|
||||||
ExecStart={{ bin_dir }}/calicoctl node --ip={{ip | default(ansible_default_ipv4.address) }} --as={{ local_as }} --detach=false --node-image={{ calico_node_image_repo }}:{{ calico_node_image_tag }}
|
ExecStart={{ bin_dir }}/calicoctl node --ip={{ip | default(ansible_default_ipv4.address) }} --as={{ local_as }} --detach=false --node-image={{ calico_node_image_repo }}:{{ calico_node_image_tag }}
|
||||||
{% else %}
|
{% else %}
|
||||||
ExecStart={{ bin_dir }}/calicoctl node --ip={{ip | default(ansible_default_ipv4.address) }} --detach=false --node-image={{ calico_node_image_repo }}:{{ calico_node_image_tag }}
|
ExecStart={{ bin_dir }}/calicoctl node --ip={{ip | default(ansible_default_ipv4.address) }} --detach=false --node-image={{ calico_node_image_repo }}:{{ calico_node_image_tag }}
|
||||||
|
|
|
@ -7,9 +7,9 @@ CALICO_IP6=""
|
||||||
{% if calico_network_backend is defined %}
|
{% if calico_network_backend is defined %}
|
||||||
CALICO_NETWORKING_BACKEND="{{calico_network_backend }}"
|
CALICO_NETWORKING_BACKEND="{{calico_network_backend }}"
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if inventory_hostname in groups['kube-node'] and peer_with_router|default(false)%}
|
{% if inventory_hostname in groups['k8s-cluster'] and peer_with_router|default(false)%}
|
||||||
CALICO_AS="{{ local_as }}"
|
CALICO_AS="{{ local_as }}"
|
||||||
{% endif %}
|
{% endif %}
|
||||||
CALICO_NO_DEFAULT_POOLS="true"
|
CALICO_NO_DEFAULT_POOLS="true"
|
||||||
CALICO_LIBNETWORK_ENABLED="true"
|
CALICO_LIBNETWORK_ENABLED="true"
|
||||||
CALICO_HOSTNAME="{{ inventory_hostname }}"
|
CALICO_HOSTNAME="{{ ansible_hostname }}"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "calico-k8s-network",
|
"name": "calico-k8s-network",
|
||||||
{% if not legacy_calicoctl %}
|
{% if not legacy_calicoctl %}
|
||||||
"hostname": "{{ inventory_hostname }}",
|
"hostname": "{{ ansible_hostname }}",
|
||||||
{% endif %}
|
{% endif %}
|
||||||
"type": "calico",
|
"type": "calico",
|
||||||
"etcd_endpoints": "{{ etcd_access_endpoint }}",
|
"etcd_endpoints": "{{ etcd_access_endpoint }}",
|
||||||
|
|
Loading…
Reference in a new issue