Some checks failed
Docs CI / lint-and-preview (push) Has been cancelled
console-runner-image / build-runner-image (push) Has been cancelled
Signals CI & Image / signals-ci (push) Has been cancelled
Signals Reachability Scoring & Events / reachability-smoke (push) Has been cancelled
Signals Reachability Scoring & Events / sign-and-upload (push) Has been cancelled
60 lines
1.1 KiB
YAML
60 lines
1.1 KiB
YAML
# Ledger (Findings Ledger) values overlay
|
|
# Use: helm install stellaops . -f values-ledger.yaml
|
|
|
|
ledger:
|
|
enabled: true
|
|
image: registry.stella-ops.org/stellaops/findings-ledger:2025.10.0-edge
|
|
replicas: 1
|
|
port: 8080
|
|
|
|
# Database configuration
|
|
postgres:
|
|
host: ""
|
|
port: 5432
|
|
database: "stellaops_ledger"
|
|
schema: "findings"
|
|
# Connection string override (takes precedence)
|
|
connectionString: ""
|
|
|
|
# Tenant isolation
|
|
multiTenant: true
|
|
defaultTenant: "default"
|
|
|
|
resources:
|
|
limits:
|
|
cpu: "1000m"
|
|
memory: "1Gi"
|
|
requests:
|
|
cpu: "200m"
|
|
memory: "512Mi"
|
|
|
|
service:
|
|
type: ClusterIP
|
|
port: 8080
|
|
|
|
livenessProbe:
|
|
httpGet:
|
|
path: /health/liveness
|
|
port: 8080
|
|
initialDelaySeconds: 15
|
|
periodSeconds: 30
|
|
|
|
readinessProbe:
|
|
httpGet:
|
|
path: /health/readiness
|
|
port: 8080
|
|
initialDelaySeconds: 10
|
|
periodSeconds: 10
|
|
|
|
securityContext:
|
|
runAsNonRoot: true
|
|
runAsUser: 10001
|
|
runAsGroup: 10001
|
|
|
|
containerSecurityContext:
|
|
allowPrivilegeEscalation: false
|
|
readOnlyRootFilesystem: true
|
|
capabilities:
|
|
drop:
|
|
- ALL
|