Browse Source

disable bgp for master

pull/21/head v1.1
Smaine Kahlouch 9 years ago
parent
commit
563be70728
1 changed files with 1 additions and 1 deletions
  1. 2
      roles/network_plugin/templates/calico/calico-node.service.j2

2
roles/network_plugin/templates/calico/calico-node.service.j2

@ -8,7 +8,7 @@ After=docker.service etcd2.service
EnvironmentFile=/etc/network-environment
User=root
PermissionsStartOnly=true
{% if peer_with_router|default(false) %}
{% if inventory_hostname in groups['kube-node'] and peer_with_router|default(false)%}
ExecStart={{ bin_dir }}/calicoctl node --kubernetes --ip=${DEFAULT_IPV4} --as={{ local_as }} --detach=false
{% else %}
ExecStart={{ bin_dir }}/calicoctl node --kubernetes --ip=${DEFAULT_IPV4} --detach=false

Loading…
Cancel
Save