# SigNoz Helm Chart Values - Development Environment # Optimized for local development with minimal resource usage # DEPLOYED IN bakery-ia NAMESPACE - Ingress managed by bakery-ingress # # Official Chart: https://github.com/SigNoz/charts # Install Command: helm install signoz signoz/signoz -n bakery-ia -f signoz-values-dev.yaml global: storageClass: "standard" clusterName: "bakery-ia-dev" domain: "monitoring.bakery-ia.local" # Docker Hub credentials - applied to all sub-charts (including Zookeeper, ClickHouse, etc) imagePullSecrets: - dockerhub-creds # Docker Hub credentials for pulling images (root level for SigNoz components) imagePullSecrets: - dockerhub-creds # SignOz Main Component (includes frontend and query service) signoz: replicaCount: 1 service: type: ClusterIP port: 8080 # DISABLE built-in ingress - using unified bakery-ingress instead # Route configured in infrastructure/kubernetes/overlays/dev/dev-ingress.yaml ingress: enabled: false resources: requests: cpu: 100m # Combined frontend + query service memory: 256Mi limits: cpu: 1000m memory: 1Gi # Environment variables (new format - replaces configVars) env: signoz_telemetrystore_provider: "clickhouse" dot_metrics_enabled: "true" signoz_emailing_enabled: "false" signoz_alertmanager_provider: "signoz" # Retention for dev (7 days) signoz_traces_ttl_duration_hrs: "168" signoz_metrics_ttl_duration_hrs: "168" signoz_logs_ttl_duration_hrs: "168" # OpAMP Server Configuration - DISABLED for dev (causes gRPC instability) signoz_opamp_server_enabled: "false" # signoz_opamp_server_endpoint: "0.0.0.0:4320" persistence: enabled: true size: 5Gi storageClass: "standard" # AlertManager Configuration alertmanager: replicaCount: 1 image: repository: signoz/alertmanager tag: 0.23.5 pullPolicy: IfNotPresent service: type: ClusterIP port: 9093 resources: requests: cpu: 25m # Reduced for local dev memory: 64Mi # Reduced for local dev limits: cpu: 200m memory: 256Mi persistence: enabled: true size: 2Gi storageClass: "standard" config: global: resolve_timeout: 5m route: group_by: ['alertname', 'cluster', 'service'] group_wait: 10s group_interval: 10s repeat_interval: 12h receiver: 'default' receivers: - name: 'default' # Add email, slack, webhook configs here # ClickHouse Configuration - Time Series Database # Minimal resources for local development on constrained Kind cluster clickhouse: enabled: true installCustomStorageClass: false image: registry: docker.io repository: clickhouse/clickhouse-server tag: 25.5.6 # Official recommended version # Reduce ClickHouse resource requests for local dev clickhouse: resources: requests: cpu: 200m # Reduced from default 500m memory: 512Mi limits: cpu: 1000m memory: 1Gi persistence: enabled: true size: 20Gi # Zookeeper Configuration (required by ClickHouse) zookeeper: enabled: true replicaCount: 1 # Single replica for dev image: tag: 3.7.1 # Official recommended version resources: requests: cpu: 100m memory: 256Mi limits: cpu: 500m memory: 512Mi persistence: enabled: true size: 5Gi # OpenTelemetry Collector - Data ingestion endpoint for all telemetry otelCollector: enabled: true replicaCount: 1 image: repository: signoz/signoz-otel-collector tag: v0.129.12 # Latest recommended version # OpAMP Configuration - DISABLED for development # OpAMP is designed for production with remote config management # In dev, it causes gRPC instability and collector reloads # We use static configuration instead # Init containers for the Otel Collector pod initContainers: fix-postgres-tls: enabled: true image: registry: docker.io repository: busybox tag: 1.35 pullPolicy: IfNotPresent command: - sh - -c - | echo "Fixing PostgreSQL TLS file permissions..." cp /etc/postgres-tls-source/* /etc/postgres-tls/ chmod 600 /etc/postgres-tls/server-key.pem chmod 644 /etc/postgres-tls/server-cert.pem chmod 644 /etc/postgres-tls/ca-cert.pem echo "PostgreSQL TLS permissions fixed" volumeMounts: - name: postgres-tls-source mountPath: /etc/postgres-tls-source readOnly: true - name: postgres-tls-fixed mountPath: /etc/postgres-tls readOnly: false # Service configuration - expose both gRPC and HTTP endpoints service: type: ClusterIP ports: # gRPC receivers - name: otlp-grpc port: 4317 targetPort: 4317 protocol: TCP # HTTP receivers - name: otlp-http port: 4318 targetPort: 4318 protocol: TCP # Prometheus remote write - name: prometheus port: 8889 targetPort: 8889 protocol: TCP # Metrics - name: metrics port: 8888 targetPort: 8888 protocol: TCP resources: requests: cpu: 50m # Reduced from 100m memory: 128Mi # Reduced from 256Mi limits: cpu: 500m memory: 512Mi # Additional environment variables for receivers additionalEnvs: POSTGRES_MONITOR_USER: "monitoring" POSTGRES_MONITOR_PASSWORD: "monitoring_369f9c001f242b07ef9e2826e17169ca" REDIS_PASSWORD: "OxdmdJjdVNXp37MNC2IFoMnTpfGGFv1k" RABBITMQ_USER: "bakery" RABBITMQ_PASSWORD: "forecast123" # Mount TLS certificates for secure connections extraVolumes: - name: redis-tls secret: secretName: redis-tls-secret - name: postgres-tls secret: secretName: postgres-tls - name: postgres-tls-fixed emptyDir: {} - name: varlogpods hostPath: path: /var/log/pods extraVolumeMounts: - name: redis-tls mountPath: /etc/redis-tls readOnly: true - name: postgres-tls mountPath: /etc/postgres-tls-source readOnly: true - name: postgres-tls-fixed mountPath: /etc/postgres-tls readOnly: false - name: varlogpods mountPath: /var/log/pods readOnly: true # Disable OpAMP - use static configuration only # Use 'args' instead of 'extraArgs' to completely override the command command: name: /signoz-otel-collector args: - --config=/conf/otel-collector-config.yaml - --feature-gates=-pkg.translator.prometheus.NormalizeName # OpenTelemetry Collector configuration config: # Connectors - bridge between pipelines connectors: signozmeter: dimensions: - name: service.name - name: deployment.environment - name: host.name metrics_flush_interval: 1h receivers: # OTLP receivers for traces, metrics, and logs from applications # All application telemetry is pushed via OTLP protocol otlp: protocols: grpc: endpoint: 0.0.0.0:4317 http: endpoint: 0.0.0.0:4318 cors: allowed_origins: - "*" # Filelog receiver for Kubernetes pod logs # Collects container stdout/stderr from /var/log/pods filelog: include: - /var/log/pods/*/*/*.log exclude: # Exclude SigNoz's own logs to avoid recursive collection - /var/log/pods/bakery-ia_signoz-*/*/*.log include_file_path: true include_file_name: false operators: # Parse CRI-O / containerd log format - type: regex_parser regex: '^(?P