Setup Kubeedge script on x86
[eliot.git] / scripts / ci_management / cleanup.sh
1 #!/bin/bash -ex
2 ##############################################################################
3 # Copyright (c) 2019 Huawei Tech and others.
4 #
5 # All rights reserved. This program and the accompanying materials
6 # are made available under the terms of the Apache License, Version 2.0
7 # which accompanies this distribution, and is available at
8 # http://www.apache.org/licenses/LICENSE-2.0
9 ##############################################################################
10
11 # start
12
13 kubeedge reset
14
15 reset="kubeedge reset --k8sserverip ${masternodeip}:8080"
16
17 while read line
18 do
19     nodeinfo="${line}"
20     nodeusr=$(echo ${nodeinfo} | cut -d"|" -f1)
21     nodeip=$(echo ${nodeinfo} | cut -d"|" -f2)
22     nodepaswd=$(echo ${nodeinfo} | cut -d"|" -f3)
23     masternodeip=$(echo ${nodeinfo} | cut -d"|" -f3)
24
25     sshpass -p ${nodepaswd} \
26     kubeedge reset --k8sserverip ${masternodeip}:8080
27
28 done < nodelist
29