59 lines
1.0 KiB
YAML
59 lines
1.0 KiB
YAML
# -----------------------------------------------------------------------------
|
|
# values.yaml
|
|
# -----------------------------------------------------------------------------
|
|
# Default values - adjust to your environment
|
|
replicaCount: 2
|
|
|
|
image:
|
|
repository: eqalpha/keydb
|
|
tag: latest
|
|
pullPolicy: IfNotPresent
|
|
|
|
service:
|
|
port: 6379
|
|
headless: true
|
|
|
|
auth:
|
|
enabled: true
|
|
password: "redisarcodange"
|
|
|
|
keydb:
|
|
serverThreads: 4
|
|
maxmemory: "70%"
|
|
maxmemoryPolicy: "allkeys-lru"
|
|
appendonly: "no"
|
|
|
|
persistence:
|
|
enabled: true
|
|
accessModes:
|
|
- ReadWriteOnce
|
|
size: 1Gi
|
|
storageClass: "local-storage" # set to your storageClass: longhorn, local-path, etc.
|
|
|
|
resources:
|
|
requests:
|
|
cpu: "300m"
|
|
memory: "512Mi"
|
|
limits:
|
|
cpu: "1200m"
|
|
memory: "1Gi"
|
|
|
|
nodeAffinity: {}
|
|
|
|
podAntiAffinity:
|
|
enabled: true
|
|
|
|
securityContext:
|
|
enabled: false
|
|
|
|
livenessProbe:
|
|
enabled: true
|
|
initialDelaySeconds: 30
|
|
periodSeconds: 10
|
|
timeoutSeconds: 5
|
|
|
|
readinessProbe:
|
|
enabled: true
|
|
initialDelaySeconds: 5
|
|
periodSeconds: 5
|
|
timeoutSeconds: 2 |