Project:Redis-K8s

From MaRDI portal
Revision as of 15:11, 10 June 2025 by EloiFerrer (talk | contribs) (Created page with "= Redis configuration = == Get the redis chart == The redis chart is published by [https://artifacthub.io/packages/helm/bitnami/redis bitnami]. However, we are running a FluxCD version that does not support OCI repositories. A simple solution is to manually download the redis chart as a <code>tgz</code> file and make it available to our cluster through our own git repository. To this end, just run <syntaxhighlight lang=bash> helm pull bitnami/redis --version 21.2.1 <...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Redis configuration

Get the redis chart

The redis chart is published by bitnami. However, we are running a FluxCD version that does not support OCI repositories.

A simple solution is to manually download the redis chart as a tgz file and make it available to our cluster through our own git repository. To this end, just run

helm pull bitnami/redis --version 21.2.1

with the right version inside the external-charts directory of our k8s repository.

Update the version accordingly in redis/release.yaml

Deploy the redis chart

We are deploying redis using architecture=standalone. This deploys a standalone Redis StatefulSet with a single service.