X-Git-Url: https://gerrit.akraino.org/r/gitweb?a=blobdiff_plain;f=scripts%2Fci_management%2Fcleanup.sh;fp=scripts%2Fci_management%2Fcleanup.sh;h=0000000000000000000000000000000000000000;hb=b9b83e766994a4802b9011ffcba092aa5681c527;hp=3aa86e310a367cee4761c178fbfcbff533178f11;hpb=5e151378cceea22cb58efd782819d5e91cd75dff;p=eliot.git diff --git a/scripts/ci_management/cleanup.sh b/scripts/ci_management/cleanup.sh deleted file mode 100644 index 3aa86e3..0000000 --- a/scripts/ci_management/cleanup.sh +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/bash -ex -############################################################################## -# Copyright (c) 2019 Huawei Tech and others. -# -# All rights reserved. This program and the accompanying materials -# are made available under the terms of the Apache License, Version 2.0 -# which accompanies this distribution, and is available at -# http://www.apache.org/licenses/LICENSE-2.0 -############################################################################## - -# start - -kubeedge reset - -reset="kubeedge reset --k8sserverip ${masternodeip}:8080" - -while read line -do - nodeinfo="${line}" - nodeusr=$(echo ${nodeinfo} | cut -d"|" -f1) - nodeip=$(echo ${nodeinfo} | cut -d"|" -f2) - nodepaswd=$(echo ${nodeinfo} | cut -d"|" -f3) - masternodeip=$(echo ${nodeinfo} | cut -d"|" -f3) - - sshpass -p ${nodepaswd} \ - kubeedge reset --k8sserverip ${masternodeip}:8080 - -done < nodelist -