Created
December 23, 2025 04:00
-
-
Save inspire12/334b09bef58a340597e631d67b418bc1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #설치 | |
| curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash | |
| # helm repo 추가 | |
| helm repo add prometheus-community https://prometheus-community.github.io/helm-charts | |
| helm repo update | |
| # 리소스 제한해서 monitoring | |
| helm install monitoring prometheus-community/kube-prometheus-stack \ | |
| -n monitoring --create-namespace \ | |
| --set alertmanager.enabled=false \ | |
| --set prometheus.enabled=true \ | |
| --set prometheus.prometheusSpec.retention=6h \ | |
| --set prometheus.prometheusSpec.retentionSize=1GB \ | |
| --set prometheus.prometheusSpec.resources.requests.cpu=100m \ | |
| --set prometheus.prometheusSpec.resources.requests.memory=512Mi \ | |
| --set grafana.enabled=true \ | |
| --set grafana.resources.requests.cpu=50m \ | |
| --set grafana.resources.requests.memory=128Mi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment