blob: 7625418cfa5d04897ba1660fdba9f08f9a993895 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#!/bin/bash
##############################################################################
# Copyright (c) 2018 Huawei Technologies Co.,Ltd 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
##############################################################################
if grep -q "cadvisor" /etc/systemd/system/kubelet.service.d/10-kubeadm.conf
then
sed -e "/cadvisor-port=0/d" -i /etc/systemd/system/kubelet.service.d/10-kubeadm.conf
systemctl daemon-reload
systemctl restart kubelet
fi
if kubectl get po -n monitoring |grep prometheus-k8s |grep -q Running
then
echo "monitoring k8s deployment has been done"
else
git clone https://github.com/coreos/prometheus-operator.git
cd prometheus-operator
kubectl apply -n kube-system -f bundle.yaml
cd contrib/kube-prometheus
sleep 10
hack/cluster-monitoring/deploy
fi
while ! $(kubectl get po -n monitoring |grep prometheus-k8s |grep -q Running);do
echo "waiting for monitoring deployment finish!"
sleep 10
done
echo "waiting for monitoring tool works"
sleep 60
|