Add some options for IEC installation scripts
[iec.git] / src / foundation / scripts / setup-cni.sh
index 55953a2..b383b97 100755 (executable)
@@ -36,6 +36,10 @@ install_flannel(){
   kubectl apply -f "${SCRIPTS_DIR}/cni/flannel/kube-flannel.yml"
 }
 
+install_contiv(){
+  # Install the Contiv-vpp
+  echo "World peach!!!!!!!!!!!!!!"
+}
 
 case ${CNI_TYPE} in
  'calico')
@@ -46,6 +50,10 @@ case ${CNI_TYPE} in
         echo "Install flannel ..."
         install_flannel
         ;;
+ 'contivvpp')
+        echo "Install Contiv-vpp ..."
+        install_contiv
+        ;;
  *)
         echo "${CNI_TYPE} does not supportted"
         exit 1