From 563be707286d2ce60a1b7fac2f14578f07cde6b1 Mon Sep 17 00:00:00 2001
From: Smaine Kahlouch <smaine.kahlouch@arkena.com>
Date: Thu, 3 Dec 2015 15:38:44 +0100
Subject: [PATCH] disable bgp for master

---
 roles/network_plugin/templates/calico/calico-node.service.j2 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/roles/network_plugin/templates/calico/calico-node.service.j2 b/roles/network_plugin/templates/calico/calico-node.service.j2
index d4083afa8..a78ef4ffb 100644
--- a/roles/network_plugin/templates/calico/calico-node.service.j2
+++ b/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
-- 
GitLab