Prometheus 3

[k3s] Prometheus를 사용하여 리소스 수집하기

https://anjelaaaaaaaa.tistory.com/41 Kubernetes에서 사용하는 패키지 매니저 노드에는 npm, 리눅스에는 apt가 있듯이 쿠버네티스에는 Helm이 있다  helm은 패키지를 " data-og-host="anjelaaaaaaaa.tistory.com" data-og-source-url="https://anjelaaaaaaaa.tistory.com/41" data-og-url="https://anjelaaaaaaaa.tistory.com/41" data-og-image="https://scrap.kakaocdn.net/dn/DLqVB/hyXzMbGAmA/McRe5HO4ZrgHkzeUnJssBK/img.png?width=543&height=214&face=0_0_543_21..

기타/kubernetes 2024.11.18

[Prometheus] Prometheus 컨테이너 에러 err="open /data/queries.active: permission denied" 해결

[Prometheus] Prometheus 컨테이너 에러 err="open /data/queries.active: permission denied" 해결 문제상황 : 프로메테우스를 설치할때 host-path의 폴더와 마운트하여 설치하고 싶었음. values.yaml 파일에 적용할 pvc의 이름을 적고 설치를 시도했는데 에러가 났다 !!!!!!!!!values 파일을 새로 생성해서 적용할 pvc 이름을 적어주고 (pv와 pvc는 미리 생성해두었음)  -> 프로메테우스에 적용할 values.yaml 파일임server: persistentVolume: existingClaim: prometheus-pvc  해당 values.yaml파일이 있는 폴더 경로로 이동해서 helm을 이용해서 프로메테우스를 설치..

기타/문제해결 2024.09.01

[kubernetes] Helm으로 프로메테우스, 그라파나 설치

[kubernetes] Helm으로 프로메테우스, 그라파나 설치  Helm이란? -> Kubernetes에서 사용하는 패키지 매니저 노드에는 npm, 리눅스에는 apt가 있듯이 쿠버네티스에는 Helm이 있다  helm은 패키지를 'chart'라는 단위로 묶어서 배포함.  (helm이 사용하는 패키지의 포맷이라고 생각하면 됨) Helm 설치  curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bashHelm 차트를 사용하기 위해 차트 repository를 추가함 helm repo add stable https://charts.helm.sh/stable추가된 저장소를 확인  helm repo list그럼 내가 추가해둔 저장..

기타/kubernetes 2024.08.31