Try It Out
In this example we will deploy Redis on a Kubernetes cluster using the Minimus Redis Advanced Helm chart. Redis will be configured with replication for high-availability caching and data storage.
Step 1: Start Cluster
If you have a cluster to work with, skip this step. Otherwise, start a Minikube cluster. Deployment instructions
Step 2: Create Namespace
Create a namespace:
kubectl create ns redis-advanced
Step 3: Deploy the Helm Chart
Deploy the Minimus Helm chart:
helm install my-redis-advanced oci://helm.mini.dev/redis-advanced \
--version 0.1.0 \
-n redis-advanced \
--wait
If you want to override the chart's defaults, go to the Values tab, save a copy locally with your changes. Deploy the chart with your overrides using -f values.yaml:
helm install my-redis-advanced oci://helm.mini.dev/redis-advanced \
--version 0.1.0 \
-f values.yaml \
-n redis-advanced \
--wait
Step 4: Verify Redis Advanced is Running
Check that the pods were successfully created:
kubectl get pods -n redis-advanced -l app.kubernetes.io/name=redis
You should see output similar to:
NAME READY STATUS RESTARTS AGE
my-redis-advanced-master-0 1/1 Running 0 2m
my-redis-advanced-replicas-0 1/1 Running 0 2m
my-redis-advanced-replicas-1 1/1 Running 0 1m
my-redis-advanced-replicas-2 1/1 Running 0 30s
Step 5: Test Redis Connection
Retrieve the Redis password and test the connection using port-forward:
kubectl port-forward -n redis-advanced svc/my-redis-advanced-master 6379:6379
In another terminal, get the password and connect:
PASS="$(kubectl get secret -n redis-advanced my-redis-advanced -o jsonpath='{.data.redis-password}' | base64 -d)"
redis-cli -h 127.0.0.1 -p 6379 -a "$PASS" ping
You should see:
Test a SET/GET round-trip:
redis-cli -h 127.0.0.1 -p 6379 -a "$PASS" set testkey "hello"
redis-cli -h 127.0.0.1 -p 6379 -a "$PASS" get testkey
You should see:
Step 6: Clean Up
Uninstall the chart and delete the namespace to remove all resources:
helm uninstall my-redis-advanced -n redis-advanced
kubectl delete namespace redis-advanced
Terms & Info
Trademark
This catalog is published by Minimus. All product names, logos, and marks, other than those belonging to Minimus, shown are owned by their respective rights holders and appear here only to identify the open source software each image contains. Minimus claims no ownership of those marks and implies no affiliation with, endorsement by, certification by, or sponsorship by any rights holder.
Disclaimer
Images are provided "as-is" without warranty of any kind. "Hardened" refers to the security configuration applied at the time of build and does not constitute a guarantee of ongoing security or absence of vulnerabilities. The free tier is provided without support, SLA, or guaranteed patching timelines. Security updates may be applied to paid subscriptions before or instead of free tier images. By pulling or using any image you agree to our Terms of Use.