Merge "uCPE Blueprint"
[eliot.git] / blueprints / uCPE / ci_management / uninstall_prometheus.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
12 # stop prometheus in ELIOT Manager
13
14 if [ $(sudo docker ps | grep prometheus | wc -l) -gt 0 ];then
15     echo "Stopping prometheus container id :- $(sudo docker ps | grep prometheus | awk '{ print $1 }')"
16     sudo docker stop $(sudo docker ps | grep prometheus | awk '{ print $1 }')
17 fi
18 if [ $(sudo docker ps -a | grep prometheus | wc -l) -gt 0 ];then
19     echo "Removing prometheus container id $(sudo docker ps -a | grep prometheus | awk '{ print $1 }')"
20     sudo docker rm $(sudo docker ps -a | grep prometheus | awk '{ print $1 }')
21 fi
22