Add a http performance test script based on wrk
[iec.git] / scripts / setup-cni.sh
diff --git a/scripts/setup-cni.sh b/scripts/setup-cni.sh
deleted file mode 100755 (executable)
index c824033..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/bash
-set -o xtrace
-set -e
-
-CLUSTER_IP=${1:-172.16.1.136} # Align with the value in our K8s setup script
-
-# Install the Etcd Database
-if [ "$(uname -m)" == 'aarch64' ]; then
-  ETCD_YAML=etcd-arm64.yaml
-else
-  ETCD_YAML=etcd-amd64.yaml
-if
-
-sed -i "s/10.96.232.136/${CLUSTER_IP}/" "cni/calico/${ETCD_YAML}"
-kubectl apply -f "cni/calico/${ETCD_YAML}"
-
-# Install the RBAC Roles required for Calico
-kubectl apply -f "cni/calico/rbac.yaml"
-
-# Install Calico to system
-sed -i "s/10.96.232.136/${CLUSTER_IP}/" cni/calico/calico.yaml
-kubectl apply -f cni/calico/calico.yaml
-
-# Remove the taints on master node
-kubectl taint nodes --all node-role.kubernetes.io/master- || true