zoukankan      html  css  js  c++  java
  • kubernetes 1.21部署 kubeprometheus

    https://github.com/prometheus-operator/kube-prometheus

    1. helm方式

    helm repo add prometheus-community https://prometheus-community.github.io/helm-charts
    helm repo update
    helm search repo prometheus-community
    
    # helm env
    HELM_BIN="helm"
    HELM_CACHE_HOME="/root/.cache/helm"
    HELM_CONFIG_HOME="/root/.config/helm"
    HELM_DATA_HOME="/root/.local/share/helm"
    HELM_DEBUG="false"
    HELM_KUBEAPISERVER=""
    HELM_KUBEASGROUPS=""
    HELM_KUBEASUSER=""
    HELM_KUBECAFILE=""
    HELM_KUBECONTEXT=""
    HELM_KUBETOKEN=""
    HELM_MAX_HISTORY="10"
    HELM_NAMESPACE="default"
    HELM_PLUGINS="/root/.local/share/helm/plugins"
    HELM_REGISTRY_CONFIG="/root/.config/helm/registry.json"
    HELM_REPOSITORY_CACHE="/root/.cache/helm/repository"
    HELM_REPOSITORY_CONFIG="/root/.config/helm/repositories.yaml"
    
    cat /root/.cache/helm/repository/prometheus-community-index.yaml |grep tgz
    确保tgz文件可下载
    
    helm install stable prometheus-community/kube-prometheus-stack
    
    kubectl get pod
    kubectl get service
    
    kubectl edit service stable-kube-prometheus-sta-prometheus
    kubectl edit service stable-grafana
    修改 type: LoadBalancer
    
    kubectl get service
    
    UserName: admin
    Password: prom-operator
    

    2. kubeadm方式

    git clone -b v0.9.0 https://hub.fastgit.org/prometheus-operator/kube-prometheus.git
    
    sed -e 's|image: quay.io|image: 192.168.100.198:5000|g' \
        -e 's|image: k8s.gcr.io|image: 192.168.100.198:5000|g' \
        -e 's|image: jimmidyson|image: 192.168.100.198:5000/jimmidyson|g' \
        -e 's|image: grafana|image: 192.168.100.198:5000/grafana|g' \
        -i /root/kube-prometheus/manifests/*.yaml
    
    sed -e 's|image: quay.io|image: 192.168.100.198:5000|g' -i /root/kube-prometheus/manifests/setup/*.yaml
    
    cd kube-prometheus
    
    kubectl create -f manifests/setup
    kubectl create -f manifests/
    
    kubectl edit service grafana -n monitoring
    kubectl edit service prometheus-k8s -n monitoring
    修改 type: LoadBalancer
    
    # kubectl get namespace -A
    NAME                   STATUS   AGE
    default                Active   32d
    ingress-nginx          Active   32d
    kube-node-lease        Active   32d
    kube-public            Active   32d
    kube-system            Active   32d
    kubernetes-dashboard   Active   32d
    metallb-system         Active   32d
    monitoring             Active   6m13s
    
    # kubectl get pod -n monitoring
    NAME                                   READY   STATUS    RESTARTS   AGE
    alertmanager-main-0                    2/2     Running   0          4m39s
    alertmanager-main-1                    2/2     Running   0          4m39s
    alertmanager-main-2                    2/2     Running   0          4m39s
    blackbox-exporter-655c658fb6-dw64k     3/3     Running   0          4m39s
    grafana-6c5697484d-qxf7x               1/1     Running   0          4m38s
    kube-state-metrics-7557977c4c-9ms2r    3/3     Running   0          4m38s
    node-exporter-52mxt                    2/2     Running   0          4m38s
    node-exporter-h9tzg                    2/2     Running   0          4m38s
    node-exporter-l6f6f                    2/2     Running   0          4m38s
    node-exporter-l9xc7                    2/2     Running   0          4m38s
    node-exporter-nn56w                    2/2     Running   0          4m38s
    node-exporter-sqk87                    2/2     Running   0          4m38s
    prometheus-adapter-5bd7ff6468-6tmdf    1/1     Running   0          4m37s
    prometheus-adapter-5bd7ff6468-ljhxk    1/1     Running   0          4m37s
    prometheus-k8s-0                       2/2     Running   0          4m36s
    prometheus-k8s-1                       2/2     Running   0          4m36s
    prometheus-operator-587f484b85-twksp   2/2     Running   0          6m52s
    
    # kubectl get service -n monitoring
    NAME                    TYPE           CLUSTER-IP       EXTERNAL-IP       PORT(S)                      AGE
    alertmanager-main       ClusterIP      10.96.207.31     <none>            9093/TCP                     4m50s
    alertmanager-operated   ClusterIP      None             <none>            9093/TCP,9094/TCP,9094/UDP   4m50s
    blackbox-exporter       ClusterIP      10.101.213.122   <none>            9115/TCP,19115/TCP           4m50s
    grafana                 LoadBalancer   10.98.70.89      192.168.100.162   3000:32358/TCP               4m49s
    kube-state-metrics      ClusterIP      None             <none>            8443/TCP,9443/TCP            4m49s
    node-exporter           ClusterIP      None             <none>            9100/TCP                     4m49s
    prometheus-adapter      ClusterIP      10.104.121.198   <none>            443/TCP                      4m49s
    prometheus-k8s          LoadBalancer   10.100.136.202   192.168.100.163   9090:31918/TCP               4m48s
    prometheus-operated     ClusterIP      None             <none>            9090/TCP                     4m48s
    prometheus-operator     ClusterIP      None             <none>            8443/TCP                     7m3s
    
    http://192.168.100.162:3000/login
    account: admin / admin
    
    http://192.168.100.163:9090
    
    kubectl delete --ignore-not-found=true -f manifests/ -f manifests/setup
    
  • 相关阅读:
    AC日记——[HNOI2008]GT考试 bzoj 1009
    AC日记——[SCOI2009]游戏 bzoj 1025
    AC日记——[HNOI2010]BOUNCE 弹飞绵羊 洛谷 P3203
    AC日记——旅游 bzoj 2157
    NOIP模拟2017.6.11解题报告
    AC日记——【模板】Link Cut Tree 洛谷 P3690
    AC日记——[SDOI2010]大陆争霸 洛谷 P3690
    [NOI2010]超级钢琴 倍增
    [HNOI2004]L语言 字典树 记忆化搜索
    对拍
  • 原文地址:https://www.cnblogs.com/liujitao79/p/15597302.html
Copyright © 2011-2022 走看看