Last active
December 26, 2025 02:17
-
-
Save inspire12/acb64ea50e445607a4fe711ee8c8e6d3 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
| # ec2 에서 | |
| #설치 | |
| 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 | |
| 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