# Exporter (Export Center) values overlay # Use: helm install stellaops . -f values-exporter.yaml exporter: enabled: true image: registry.stella-ops.org/stellaops/exporter:2025.10.0-edge replicas: 1 port: 8080 # Export configuration storage: # Object store for export artifacts endpoint: "" bucket: "stellaops-exports" region: "" # Retention policy retention: defaultDays: 30 maxDays: 365 resources: limits: cpu: "500m" memory: "512Mi" requests: cpu: "100m" memory: "256Mi" service: type: ClusterIP port: 8080 livenessProbe: httpGet: path: /health/liveness port: 8080 initialDelaySeconds: 10 periodSeconds: 30 readinessProbe: httpGet: path: /health/readiness port: 8080 initialDelaySeconds: 5 periodSeconds: 10 securityContext: runAsNonRoot: true runAsUser: 10001 runAsGroup: 10001 containerSecurityContext: allowPrivilegeEscalation: false readOnlyRootFilesystem: true capabilities: drop: - ALL