版本

组件版本
kubernetes1.23.4
prometheus2.34.0
node-exporter1.3.1
grafana8.4.6

参考资料

prometheus官网:https://prometheus.io/docs/pr...
prometheus官网镜像:https://hub.docker.com/r/prom...
prometheus官网示例:https://github.com/prometheus...

prometheu部署

#生成deploymentkubectl create deployment prometheus --image=prom/prometheus:v2.34.0 --dry-run=client -o yaml > prometheus-deployment.yaml
#生成servicekubectl expose deployment prometheus --port=9090 --type=NodePort --target-port=9090 --name=prometheus -o yaml > prometheus-service.yaml

grafana部署

#生成deploymentkubectl create deployment grafana --image=grafana/grafana-oss:8.4.6 --dry-run=client -o yaml > grafana-deployment.yaml
#生成servicekubectl expose deployment grafana --port=3000 --type=NodePort --target-port=3000 --name=grafana --dry-run=client -o yaml > grafana-service.yaml

node-exporter部署

#生成deploymentkubectl create deployment node-exporter --image=prom/node-exporter:v1.3.1 --dry-run=client -o yaml > node-exporter-deployment.yaml
#生成servicekubectl expose deployment node-exporter --port=9100 --type=NodePort --target-port=9100 --name=grafana --dry-run=client -o yaml > node-exporter-service.yaml