X-Git-Url: https://gerrit.akraino.org/r/gitweb?a=blobdiff_plain;f=blueprints%2FuCPE%2Fci_management%2Fcleanup_control.sh;fp=blueprints%2FuCPE%2Fci_management%2Fcleanup_control.sh;h=0000000000000000000000000000000000000000;hb=692eda26d4bb9aea2760f0c3d48d7a91c392afd9;hp=3f14b0292969abdbd5b1db21db5f520bfc8aaae2;hpb=c19ae19ceb20a1c47d53e5d2a482f6f4fd5cfa38;p=eliot.git diff --git a/blueprints/uCPE/ci_management/cleanup_control.sh b/blueprints/uCPE/ci_management/cleanup_control.sh deleted file mode 100755 index 3f14b02..0000000 --- a/blueprints/uCPE/ci_management/cleanup_control.sh +++ /dev/null @@ -1,42 +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 -############################################################################## - -# constants - -TESTYAML="testk8s-nginx.yaml" - -# start - -source ../src/config_kubeedge > /dev/null 2>&1 -cd -kubectl delete -f $TESTYAML - -exec_edge_master(){ - - sshpass -p ${EDGENODEPASSWORD} \ - scp ${PATH_OF_ELIOTFOLDER}/scripts/ci_management/cleanup_edge.sh \ - ${EDGENODEUSR}@${EDGENODEIP}:$HOME_EDGENODE - - sshpass -p ${EDGENODEPASSWORD} ssh ${EDGENODEUSR}@${EDGENODEIP} \ - source cleanup_edge.sh - - cd $PATH_OF_ELIOTFOLDER/scripts/ci_management - source cleanup_master.sh - - sshpass -p ${EDGENODEPASSWORD} \ - scp ${PATH_OF_ELIOTFOLDER}/scripts/ci_management/cleanup_edge_final.sh \ - ${EDGENODEUSR}@${EDGENODEIP}:$HOME_EDGENODE - - sshpass -p ${EDGENODEPASSWORD} ssh ${EDGENODEUSR}@${EDGENODEIP} \ - source cleanup_edge_final.sh - -} - -exec_edge_master > /dev/null 2>&1