image: repository: ghcr.io/truecharts/redis pullPolicy: IfNotPresent tag: v6.2.6@sha256:a021aec3adf6b103916f5af0dfcc3eeb267ac3cbf802689614d4b025206fcfbb controller: # -- Set the controller type. # Valid options are deployment, daemonset or statefulset type: statefulset # -- Number of desired pods replicas: 1 # -- Set the controller upgrade strategy # For Deployments, valid values are Recreate (default) and RollingUpdate. # For StatefulSets, valid values are OnDelete and RollingUpdate (default). # DaemonSets ignore this. strategy: RollingUpdate rollingUpdate: # -- Set deployment RollingUpdate max unavailable unavailable: 1 # -- Set deployment RollingUpdate max surge surge: # -- Set statefulset RollingUpdate partition partition: # -- ReplicaSet revision history limit revisionHistoryLimit: 3 securityContext: readOnlyRootFilesystem: false podSecurityContext: runAsGroup: 0 env: - name: REDIS_REPLICATION_MODE value: master - name: ALLOW_EMPTY_PASSWORD value: "yes" envTpl: REDIS_PORT: "{{ .Values.service.main.ports.main.targetPort }}" redisPassword: "testpass" existingSecret: "" envValueFrom: REDIS_PASSWORD: secretKeyRef: name: '{{ ( tpl .Values.existingSecret $ ) | default ( include "common.names.fullname" . ) }}' key: "redis-password" service: main: ports: main: port: 6379 targetPort: 6379 volumeClaimTemplates: data: enabled: true mountPath: "/bitnami/redis" # -- Probe configuration # -- [[ref]](https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/) # @default -- See below probes: # -- Liveness probe configuration # @default -- See below liveness: # -- Enable the liveness probe enabled: true # -- Set this to `true` if you wish to specify your own livenessProbe custom: true # -- The spec field contains the values for the default livenessProbe. # If you selected `custom: true`, this field holds the definition of the livenessProbe. # @default -- See below spec: exec: command: - sh - -c - /health/ping_liveness_local.sh 2 # -- Redainess probe configuration # @default -- See below readiness: # -- Enable the readiness probe enabled: true # -- Set this to `true` if you wish to specify your own readinessProbe custom: true # -- The spec field contains the values for the default readinessProbe. # If you selected `custom: true`, this field holds the definition of the readinessProbe. # @default -- See below spec: exec: command: - sh - -c - /health/ping_readiness_local.sh 2 # -- Startup probe configuration # @default -- See below startup: # -- Enable the startup probe enabled: true custom: true # -- The spec field contains the values for the default livenessProbe. # If you selected `custom: true`, this field holds the definition of the livenessProbe. # @default -- See below spec: exec: command: - sh - -c - /health/ping_readiness_local.sh 2 persistence: # -- redis-health configmap mount # @default -- See below redis-health: enabled: true type: custom # -- Where to mount the volume in the main container. # Defaults to `/`, # setting to '-' creates the volume but disables the volumeMount. mountPath: "/health" # -- Specify if the volume should be mounted read-only. readOnly: false # -- Define the custom Volume spec here # [[ref]](https://kubernetes.io/docs/concepts/storage/volumes/) volumeSpec: configMap: defaultMode: 0755 name: redis-health