Search
Duplicate
📒

[GitOps CICD] 09. 모니터링

수업
GitOps CICD
주제
기본개념
5 more properties
참고

1. 목차

NOTE

목차

NOTE
# 그라파나, 프로메테우스를 올리기위한 노드수 증가 eksctl scale nodegroup --cluster=gitops --nodes=4 --name=ng-workers --nodes-max=4 --wait kubectl get no
Bash
복사
k create ns monitoring k get ns # 프로메테우스 설치 helm repo add prometheus-community https://prometheus-community.github.io/helm-charts helm install prometheus prometheus-community/prometheus -n monitoring kubectl get po ‒n monitoring # 그라파나 설치 helm repo add grafana https://grafana.github.io/helm-charts helm install grafana grafana/grafana -n monitoring kubectl get po -n monitoring | grep grafana # 비밀번호 확인 k get secret -n monitoring k edit secret [그라파나 secret 이름] -n monitoring echo [secret key]== | base64 --decode
Bash
복사

목차

NOTE

1. 목차

NOTE

목차

NOTE