Files
applications/umami/helm-values.yaml
Mayne0213 b4ae36ae61 FIX(umami): use chart-specific disableLogin setting
- Use umami.disableLogin instead of env variable
- Set removeDisableLoginEnv to false to preserve env var
2026-01-10 17:25:01 +09:00

92 lines
1.7 KiB
YAML

fullnameOverride: umami
image:
tag: postgresql-latest
# Disable PostgreSQL subchart (using external PostgreSQL)
postgresql:
enabled: false
# External database configuration
externalDatabase:
type: postgresql
hostname: postgresql-rw.postgresql.svc.cluster.local
port: 5432
auth:
database: umami
username: bluemayne
# Password is managed via External Secrets Operator (Vault)
# Use existing secret for sensitive data
database:
existingSecret: umami-password
# Environment variables from secret
envFrom:
- secretRef:
name: umami-password
# Disable login (using Authelia for authentication)
umami:
disableLogin: "1"
removeDisableLoginEnv: false
ingress:
enabled: false # Will use our main ingress
service:
type: ClusterIP
port: 3000
resources:
requests:
cpu: 15m
memory: 283Mi
limits:
memory: 283Mi
replicaCount: 1
# Autoscaling
autoscaling:
enabled: false
minReplicas: 1
maxReplicas: 4
targetCPUUtilizationPercentage: 80
# Health checks
startupProbe:
enabled: true
httpGet:
path: /api/heartbeat
port: 3000
periodSeconds: 10
failureThreshold: 30
livenessProbe:
enabled: true
httpGet:
path: /api/heartbeat
port: 3000
initialDelaySeconds: 0
periodSeconds: 10
readinessProbe:
enabled: true
httpGet:
path: /api/heartbeat
port: 3000
initialDelaySeconds: 0
periodSeconds: 5
# Affinity - Soft Anti-Affinity to spread pods across nodes
affinity:
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- weight: 100
podAffinityTerm:
labelSelector:
matchLabels:
app.kubernetes.io/name: umami
topologyKey: kubernetes.io/hostname