Files
bakery-ia/infrastructure/monitoring/signoz/k8s-infra-values-dev.yaml
2026-01-25 20:07:39 +01:00

54 lines
1.6 KiB
YAML

# SigNoz k8s-infra Helm Chart Values - Development Environment
# Collects Kubernetes infrastructure metrics and sends to SigNoz
#
# Official Chart: https://github.com/SigNoz/charts/tree/main/charts/k8s-infra
# Install Command: helm upgrade --install k8s-infra signoz/k8s-infra -n bakery-ia -f k8s-infra-values-dev.yaml
# ============================================================================
# OTEL COLLECTOR ENDPOINT
# ============================================================================
otelCollectorEndpoint: "signoz-otel-collector.bakery-ia.svc.cluster.local:4317"
otelInsecure: true
clusterName: "bakery-ia-dev"
# ============================================================================
# PRESETS - Minimal configuration for development
# ============================================================================
presets:
hostMetrics:
enabled: true
collectionInterval: 60s # Less frequent in dev
kubeletMetrics:
enabled: true
collectionInterval: 60s
kubernetesAttributes:
enabled: true
kubernetesEvents:
enabled: false # Disabled in dev to reduce noise
logsCollection:
enabled: false
# ============================================================================
# OTEL AGENT - Minimal resources for dev
# ============================================================================
otelAgent:
enabled: true
resources:
requests:
memory: "128Mi"
cpu: "50m"
limits:
memory: "256Mi"
cpu: "250m"
otelDeployment:
enabled: false
commonLabels:
app.kubernetes.io/part-of: "signoz"
environment: "development"