X-Git-Url: https://gerrit.akraino.org/r/gitweb?a=blobdiff_plain;f=scripts%2Fci_management%2Fcleanup_edge_final.sh;fp=scripts%2Fci_management%2Fcleanup_edge_final.sh;h=a42e8758d2114d4409d8bc16ecb5d59562f80aca;hb=b9b83e766994a4802b9011ffcba092aa5681c527;hp=0000000000000000000000000000000000000000;hpb=5e151378cceea22cb58efd782819d5e91cd75dff;p=eliot.git diff --git a/scripts/ci_management/cleanup_edge_final.sh b/scripts/ci_management/cleanup_edge_final.sh new file mode 100644 index 0000000..a42e875 --- /dev/null +++ b/scripts/ci_management/cleanup_edge_final.sh @@ -0,0 +1,28 @@ +#!/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 + +NGINX=$(sudo docker ps | grep nginx | wc -l) +KUBEPROXY=$(sudo docker ps | grep k8s.gcr.io | wc -l) +CONSTZERO="0" + +# start + +echo "nginx container stop" +if [ $NGINX != $CONSTZERO ]; then + sudo docker kill $(docker ps -q --filter ancestor=nginx:1.15.12 ) +fi + +echo "kubeproxy container stop" +if [ $KUBEPROXY != $CONSTZERO ]; then + sudo docker kill $(docker ps -q --filter ancestor=k8s.gcr.io/kube-proxy:v1.14.2 ) +fi +echo "Finished"