diff --git a/.travis.yml b/.travis.yml
index 7718318e63d6a8bd9458ad3db74692bba1307e59..00e27304ec8d3e27413a82b8fa3a9f4c933e1fe8 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -128,7 +128,7 @@ script:
     -e cloud_region=${CLOUD_REGION}
 
     # Create cluster
-  - "$HOME/.local/bin/ansible-playbook -i inventory/inventory.ini -u $SSH_USER -e ansible_ssh_user=$SSH_USER $SSH_ARGS -b --become-user=root -e '{\"cloud_provider\": true}'  $LOG_LEVEL -e kube_network_plugin=${KUBE_NETWORK_PLUGIN} cluster.yml"
+  - "$HOME/.local/bin/ansible-playbook -i inventory/inventory.ini -u $SSH_USER -e ansible_ssh_user=$SSH_USER $SSH_ARGS -b --become-user=root -e cloud_provider=gce  $LOG_LEVEL -e kube_network_plugin=${KUBE_NETWORK_PLUGIN} cluster.yml"
     # Tests Cases
     ## Test Master API
   - $HOME/.local/bin/ansible-playbook -i inventory/inventory.ini tests/testcases/010_check-apiserver.yml $LOG_LEVEL
diff --git a/inventory/group_vars/all.yml b/inventory/group_vars/all.yml
index 0b239af7df7819f0c5288fbcd9f2ef0429042c3d..0fe6b5d8622478fa5117b5fa6689cf0bd148bd8f 100644
--- a/inventory/group_vars/all.yml
+++ b/inventory/group_vars/all.yml
@@ -101,6 +101,11 @@ dns_domain: "{{ cluster_name }}"
 skydns_server: "{{ kube_service_addresses|ipaddr('net')|ipaddr(3)|ipaddr('address') }}"
 dns_server: "{{ kube_service_addresses|ipaddr('net')|ipaddr(2)|ipaddr('address') }}"
 
+# There are some changes specific to the cloud providers
+# for instance we need to encapsulate packets with some network plugins
+# If set the possible values are either 'gce' or 'aws'
+# cloud_provider:
+
 # For multi masters architecture:
 # kube-proxy doesn't support multiple apiservers for the time being so you'll need to configure your own loadbalancer
 # This domain name will be inserted into the /etc/hosts file of all servers
diff --git a/requirements.yml b/requirements.yml
index da00d4dd96554e874a21477a75863b4de3ed1ba2..6f5f931e6425ebb59a01c05968ecc8ac1c2e893c 100644
--- a/requirements.yml
+++ b/requirements.yml
@@ -1,17 +1,13 @@
 ---
-- src: https://gitlab.com/kubespray-ansibl8s/k8s-common.git
+- src: https://gitlab.com/kubespray-ansibl8s/k8s-dashboard.git
   path: roles/apps
   scm: git
 
-- src: https://gitlab.com/kubespray-ansibl8s/k8s-kubedns.git
-  path: roles/apps
-  scm: git
-
-- src: https://gitlab.com/kubespray-ansibl8s/k8s-kube-ui.git
+- src: https://gitlab.com/kubespray-ansibl8s/k8s-common.git
   path: roles/apps
   scm: git
 
-- src: https://gitlab.com/kubespray-ansibl8s/k8s-fabric8.git
+- src: https://gitlab.com/kubespray-ansibl8s/k8s-kubedns.git
   path: roles/apps
   scm: git
 
diff --git a/roles/kubernetes/preinstall/tasks/main.yml b/roles/kubernetes/preinstall/tasks/main.yml
index 0bcc03e0a783b8d08dd4af65b2a1f9ffa16b5c62..be9515a2d8d4a2921fbcaaa055a7bd55835339e6 100644
--- a/roles/kubernetes/preinstall/tasks/main.yml
+++ b/roles/kubernetes/preinstall/tasks/main.yml
@@ -46,6 +46,11 @@
     owner: kube
   when: ansible_service_mgr in ["sysvinit","upstart"]
 
+- name: check cloud_provider value
+  fail:
+    msg: "If set the 'cloud_provider' var must be set eithe to 'gce' or 'aws'"
+  when: cloud_provider is defined and cloud_provider not in ['gce', 'aws']
+
 - name: Create cni directories
   file:
     path: "{{ item }}"
diff --git a/roles/network_plugin/calico/defaults/main.yml b/roles/network_plugin/calico/defaults/main.yml
index 5aa70124995946feacd01121fdc563d5eea01297..91a281106b1d3314153ebf979fe1a55b6d69a0b4 100644
--- a/roles/network_plugin/calico/defaults/main.yml
+++ b/roles/network_plugin/calico/defaults/main.yml
@@ -1,4 +1,6 @@
 ---
 # Enables Internet connectivity from containers
 nat_outgoing: true
-# cloud_provider: no
+
+# cloud_provider can only be set to 'gce' or 'aws'
+# cloud_provider:
diff --git a/roles/network_plugin/calico/tasks/main.yml b/roles/network_plugin/calico/tasks/main.yml
index d2f477032dea2bb688b25dfd984fa8ed373872a0..c112bbdc716ee598733dbb42cf08398fb267e890 100644
--- a/roles/network_plugin/calico/tasks/main.yml
+++ b/roles/network_plugin/calico/tasks/main.yml
@@ -51,19 +51,19 @@
 - name: Calico | Configure calico network pool
   command: "{{ bin_dir }}/calicoctl pool add {{ kube_pods_subnet }}"
   run_once: true
-  when: calico_conf.status == 404 and (cloud_provider is not defined or cloud_provider != True)
+  when: calico_conf.status == 404 and cloud_provider is not defined
         and not nat_outgoing|default(false) or
         (nat_outgoing|default(false) and peer_with_router|default(false))
 
 - name: Calico | Configure calico network pool for cloud
   command: "{{ bin_dir }}/calicoctl pool add {{ kube_pods_subnet }} --ipip --nat-outgoing"
   run_once: true
-  when: calico_conf.status == 404 and cloud_provider is defined and cloud_provider == True
+  when: calico_conf.status == 404 and cloud_provider is defined
 
 - name: Calico | Configure calico network pool with nat outgoing
   command: "{{ bin_dir}}/calicoctl pool add {{ kube_pods_subnet }} --nat-outgoing"
   run_once: true
-  when: calico_conf.status == 404 and (cloud_provider is not defined or cloud_provider != True)
+  when: calico_conf.status == 404 and cloud_provider is not defined
         and nat_outgoing|default(false) and not peer_with_router|default(false)
 
 - name: Calico | Get calico configuration from etcd
diff --git a/tests/support/aws.groovy b/tests/support/aws.groovy
index 1d472b8458fc3c94fb09aac3abe0e2f37b987830..e49b3517b4fe185ea6e7a1b4054a50f02be20fb2 100644
--- a/tests/support/aws.groovy
+++ b/tests/support/aws.groovy
@@ -58,7 +58,7 @@ def install_cluster(inventory_path, credentialsId, network_plugin) {
         extraVars: [
             kube_network_plugin: network_plugin
         ],
-        extras: "-e '{\"cloud_provider\": true}'",
+        extras: "-e cloud_provider=aws",
         colorized: true
     )
 }