Kubernetes Prometheus, Grafana 설치/구성하기
Kubernetes에서 기본 모니터링을 할 수 있도록 구성해본다. 가장 많이 사용되는 오픈소스로 Prometheus, Grafana 구성이다. 1. Helm 설치 - Helm v3.0.0 이상을 설치한다. curl https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 > get_helm.sh sudo chmod 700 get_helm.sh ./get_helm.sh - Helm Chart Repo를 추가하고, 업데이트한다. (본문에서는 Git에서 Chart를 직접 다운받는다.) 설치한 Helm이 v3.0.0 이상임을 확인한다. helm repo add stable https://charts.helm.sh/stable git clone ..
2021.11.10