Configure an external in-memory cache (Helm)
For CARTO Self-hosted using Kubernetes and Helm
Setup
Configuration
kubectl create secret generic \
-n <namespace> \
mycarto-custom-redis-secret \
--from-literal=password=<AUTH string password>internalRedis:
# Disable the internal Redis
enabled: false
externalRedis:
host: <Redis IP/Hostname>
port: "6379"
existingSecret: "mycarto-custom-redis-secret"
existingSecretPasswordKey: "password"
tlsEnabled: true
# Only applies if your Redis TLS certificate it's self-signed
# tlsCA: |
# -----BEGIN CERTIFICATE-----
# ...
# -----END CERTIFICATE-----Configure TLS
Last updated
Was this helpful?
