버전 비교

  • 이 줄이 추가되었습니다.
  • 이 줄이 삭제되었습니다.
  • 서식이 변경되었습니다.
댓글: Reverted from v. 13

...

참고) https://grafana.com/grafana/dashboards/

1.3 kube-prometheus-stack

  • 쿠버네티스 모니터링을 위한 커스텀 Helm Chart

  • helm Repository를 등록합니다.

12/03-kube-prometheus-stack.txt

코드 블럭
helm repo add prometheus-community https://prometheus-community.github.io/helm-charts
helm repo update
  • 차트를 다운로드 받습니다.

코드 블럭
helm pull prometheus-community/kube-prometheus-stack --untar
# cd kube-prometheus-stack/
  • 설정 확인/변경 후 차트를 설치합니다.

코드 블럭
helm install prometheus-stack . -f values.yaml -n monitoring --create-namespace
  • 접속을 위해 서비스타입을 변경합니다.

코드 블럭
kubectl -n monitoring edit svc prometheus-stack-grafana
ClusterIP -> LoadBalancer

image-20240521-015740.pngImage Removed