오늘도 한 뼘 더

[Helm] Helm 사용하여 프로메테우스 설치하기 본문

DevOps & Infra/K8S(Kubernetes)

[Helm] Helm 사용하여 프로메테우스 설치하기

나른한댕댕이🐶 2023. 10. 6. 17:38
728x90
반응형

# helm 차트 받아오기

helm repo add prometheus-community https://prometheus-community.github.io/helm-charts
helm repo update

 

# 프로메테우스 관련 git clone

git clone https://github.com/prometheus-community/helm-charts.git

 

# values.yaml 변경

helm-charts/charts/prometheus 경로에 있는 values.yaml 파일에 대해서 사용하고자 하는 방식으로 변경한다.

  • nodeSelector
  • nodePort
server:
  name: server
  nodeSelector:
    monitor: ok
  ...
  
  service:
    servicePort: 9090
    type: NodePort
    nodePort: 30000

 

# 프로메테우스 설치

  • helm 명령어를 통해서 프로메테우스를 설치한다. (namespace monitoring에 설치)
helm install prometheus prometheus-community/prometheus -f values.yaml -n monitoring
  • helm list를 통해서 설치된 것을 확인한다.
helm list -n monitoring

> NAME      	NAMESPACE 	REVISION	UPDATED                         STATUS  	CHART            	APP VERSION
prometheus	monitoring	1       	2023-10-06 12:36:23 +0900 KST	deployed	prometheus-23.3.0	v2.46.0
728x90
반응형
Comments