diff --git a/roles/docker/tasks/configure.yml b/roles/docker/tasks/configure.yml
index d370f4b840b2e73ce058fc2c7266cdfbdd6aa507..1e337ce5de80d8d70e5fc3e3d37bb2b980ba47a5 100644
--- a/roles/docker/tasks/configure.yml
+++ b/roles/docker/tasks/configure.yml
@@ -1,12 +1,4 @@
 ---
-- name: Write script for calico/docker bridge configuration
-  template: src=create_cbr.j2 dest=/etc/network/if-up.d/create_cbr mode=u+x backup=yes
-  when: kube_network_plugin is defined and kube_network_plugin == "calico"
-
-- name: Configure calico/docker bridge
-  command: /etc/network/if-up.d/create_cbr
-  when: kube_network_plugin is defined and kube_network_plugin == "calico"
-
 - name: enable docker
   service:
     name: docker
diff --git a/roles/docker/templates/create_cbr.j2 b/roles/docker/templates/create_cbr.j2
deleted file mode 100644
index 24bf172e6646945d52e2bafb9bef651369eb66b3..0000000000000000000000000000000000000000
--- a/roles/docker/templates/create_cbr.j2
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/bash
-
-# Create calico bridge cbr0 if it doesn't exist
-ifaces=$(ifconfig -a | sed 's/[ \t].*//;/^\(lo\|\)$/d' |tr '\n' ' ')
-if ! [[ "${ifaces}" =~ "cbr0" ]];then
-   brctl addbr cbr0
-   ip link set cbr0 up
-fi
-
-# Configure calico bridge ip
-br_ips=$(ip addr list cbr0 |grep "inet " |cut -d' ' -f6)
-if ! [[ "${br_ips}" =~ "{{ br_addr }}/{{ kube_network_node_prefix }}" ]];then
-       ip a add {{ br_addr }}/{{ kube_network_node_prefix }} dev cbr0
-fi
diff --git a/roles/docker/templates/default-docker.j2 b/roles/docker/templates/default-docker.j2
index 66e3cd2ee57cc545512603b8d17ae49578ee385b..3da7d360614059fb87178d07c0517b3c5088aa58 100644
--- a/roles/docker/templates/default-docker.j2
+++ b/roles/docker/templates/default-docker.j2
@@ -4,9 +4,7 @@
 #DOCKER="/usr/local/bin/docker"
 
 # Use DOCKER_OPTS to modify the daemon startup options.
-{% if kube_network_plugin is defined and kube_network_plugin == "calico" %}
-DOCKER_OPTS="--bridge=cbr0 --iptables=false --ip-masq=false"
-{% endif %}
+#DOCKER_OPTS=""
 
 # If you need Docker to use an HTTP proxy, it can also be specified here.
 #export http_proxy="http://127.0.0.1:3128/"