Files

51 lines
1.1 KiB
YAML

# Default values for redis-cache.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
## Statefulset related configurations ss.yaml
antiAffinity: "hard"
replicaCount: 3
redis:
image:
repository: redis
tag: 4.0.12-alpine
pullPolicy: IfNotPresent
resources:
limits:
memory: 128Mi
requests:
memory: 128Mi
microSentinel:
image:
repository: dhilipkumars/redis-sentinel-k8s
tag: 0.1.0
pullPolicy: IfNotPresent
resources: {}
# limits:
# cpu: 10m
# memory: 20Mi
# requests:
# cpu: 10m
# memory: 20Mi
makeSlave:
image:
repository: dhilipkumars/mk-redis-slave
tag: 0.1.0
pullPolicy: IfNotPresent
resources: {}
# limits:
# cpu: 10m
# memory: 20Mi
# requests:
# cpu: 10m
# memory: 20Mi
# Service related configurations common for templates/service.yaml and templates/ss.yaml (redis container)
service:
name: rd-port
port: 6379
# Pod Disruption budget related configurations
podDisruptionBudget:
minAvailable: 2