- CPU throttling prevents app startup, not crashes - Memory OOM is the real cascading failure cause - CPU request ensures fair scheduling
38 lines
706 B
YAML
38 lines
706 B
YAML
# Prometheus Node Exporter Helm Values
|
|
# Chart: https://github.com/prometheus-community/helm-charts/tree/main/charts/prometheus-node-exporter
|
|
|
|
fullnameOverride: node-exporter
|
|
|
|
hostNetwork: true
|
|
hostPID: true
|
|
|
|
resources:
|
|
requests:
|
|
cpu: 15m
|
|
memory: 64Mi
|
|
limits:
|
|
memory: 96Mi
|
|
|
|
service:
|
|
type: ClusterIP
|
|
clusterIP: None
|
|
|
|
# Prometheus ServiceMonitor 설정
|
|
prometheus:
|
|
monitor:
|
|
enabled: true
|
|
additionalLabels:
|
|
release: prometheus
|
|
namespace: prometheus
|
|
namespaceSelector:
|
|
matchNames:
|
|
- node-exporter
|
|
attachMetadata:
|
|
node: true
|
|
relabelings:
|
|
- targetLabel: cluster
|
|
replacement: "mayne-cluster"
|
|
|
|
tolerations:
|
|
- operator: Exists
|