#!/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