22 lines
754 B
Text
22 lines
754 B
Text
|
|
# Valkey standalone Helm values — S3 Platform Services
|
||
|
|
# Encrypt before committing: sops -e -i helm/valkey-values.sops.yaml
|
||
|
|
# Deploy: make valkey-deploy
|
||
|
|
#
|
||
|
|
# Gitea connection strings (update gitea-values.sops.yaml after deployment):
|
||
|
|
# cache: redis://:PASSWORD@valkey-master.platform.svc.cluster.local:6379/0
|
||
|
|
# session: redis://:PASSWORD@valkey-master.platform.svc.cluster.local:6379/1
|
||
|
|
# queue: redis://:PASSWORD@valkey-master.platform.svc.cluster.local:6379/2
|
||
|
|
auth:
|
||
|
|
enabled: true
|
||
|
|
password: REPLACE_WITH_PASSWORD # encrypt with SOPS
|
||
|
|
|
||
|
|
architecture: standalone # single node; upgrade to replication when RAM allows
|
||
|
|
|
||
|
|
master:
|
||
|
|
persistence:
|
||
|
|
enabled: true
|
||
|
|
size: 2Gi
|
||
|
|
|
||
|
|
replica:
|
||
|
|
replicaCount: 0 # standalone mode — no replicas
|