2026-01-08 12:58:00 +01:00
|
|
|
# SigNoz Helm Chart Values - Development Environment
|
|
|
|
|
# Optimized for local development with minimal resource usage
|
2026-01-22 12:31:10 +01:00
|
|
|
# DEPLOYED IN bakery-ia NAMESPACE - Ingress managed by SigNoz Helm chart
|
2026-01-08 12:58:00 +01:00
|
|
|
#
|
|
|
|
|
# Official Chart: https://github.com/SigNoz/charts
|
2026-01-09 07:26:11 +01:00
|
|
|
# Install Command: helm install signoz signoz/signoz -n bakery-ia -f signoz-values-dev.yaml
|
2026-01-08 12:58:00 +01:00
|
|
|
|
|
|
|
|
global:
|
|
|
|
|
storageClass: "standard"
|
2026-01-09 07:26:11 +01:00
|
|
|
clusterName: "bakery-ia-dev"
|
2026-01-08 19:25:52 +01:00
|
|
|
domain: "monitoring.bakery-ia.local"
|
2026-01-09 06:57:18 +01:00
|
|
|
# Docker Hub credentials - applied to all sub-charts (including Zookeeper, ClickHouse, etc)
|
2026-01-22 12:31:10 +01:00
|
|
|
|
|
|
|
|
# Ingress configuration for SigNoz development
|
|
|
|
|
frontend:
|
|
|
|
|
ingress:
|
|
|
|
|
enabled: true
|
2026-01-22 15:42:32 +01:00
|
|
|
className: nginx
|
2026-01-22 12:31:10 +01:00
|
|
|
annotations:
|
|
|
|
|
nginx.ingress.kubernetes.io/ssl-redirect: "false" # Disable for local development
|
|
|
|
|
nginx.ingress.kubernetes.io/proxy-body-size: "100m"
|
|
|
|
|
nginx.ingress.kubernetes.io/proxy-read-timeout: "3600"
|
|
|
|
|
nginx.ingress.kubernetes.io/proxy-send-timeout: "3600"
|
|
|
|
|
hosts:
|
|
|
|
|
- host: monitoring.bakery-ia.local
|
|
|
|
|
paths:
|
|
|
|
|
- path: /
|
|
|
|
|
pathType: Prefix
|
|
|
|
|
tls: [] # No TLS for local development
|
|
|
|
|
|
|
|
|
|
# Resource configuration for development
|
|
|
|
|
# Minimal resources for local testing
|
|
|
|
|
clickhouse:
|
|
|
|
|
persistence:
|
|
|
|
|
size: 5Gi
|
|
|
|
|
resources:
|
|
|
|
|
requests:
|
|
|
|
|
memory: "512Mi"
|
|
|
|
|
cpu: "250m"
|
|
|
|
|
limits:
|
|
|
|
|
memory: "1Gi"
|
|
|
|
|
cpu: "500m"
|
|
|
|
|
|
|
|
|
|
otelCollector:
|
|
|
|
|
resources:
|
|
|
|
|
requests:
|
|
|
|
|
memory: "256Mi"
|
|
|
|
|
cpu: "100m"
|
|
|
|
|
limits:
|
|
|
|
|
memory: "512Mi"
|
|
|
|
|
cpu: "250m"
|
|
|
|
|
|
|
|
|
|
queryService:
|
|
|
|
|
resources:
|
|
|
|
|
requests:
|
|
|
|
|
memory: "256Mi"
|
|
|
|
|
cpu: "100m"
|
|
|
|
|
limits:
|
|
|
|
|
memory: "512Mi"
|
|
|
|
|
cpu: "250m"
|
|
|
|
|
|
|
|
|
|
alertmanager:
|
|
|
|
|
resources:
|
|
|
|
|
requests:
|
|
|
|
|
memory: "128Mi"
|
|
|
|
|
cpu: "50m"
|
|
|
|
|
limits:
|
|
|
|
|
memory: "256Mi"
|
|
|
|
|
cpu: "100m"
|