helm install redis bitnami/redis

From wikieduonline
Jump to navigation Jump to search

helm install redis bitnami/redis
NAME: redis
LAST DEPLOYED: Tue Sep 27 10:46:35 2022
NAMESPACE: default
STATUS: deployed
REVISION: 1
TEST SUITE: None
NOTES:
CHART NAME: redis
CHART VERSION: 17.2.0
APP VERSION: 7.0.5

** Please be patient while the chart is being deployed **

Redis® can be accessed on the following DNS names from within your cluster:

    redis-master.default.svc.cluster.local for read/write operations (port 6379)
    redis-replicas.default.svc.cluster.local for read-only operations (port 6379)
  


To get your password run:

   export REDIS_PASSWORD=$(kubectl get secret --namespace default redis -o jsonpath="{.data.redis-password}" | base64 -d)

To connect to your Redis® server:

1. Run a Redis® pod that you can use as a client:
  kubectl run --namespace default redis-client --restart='Never'  --env REDIS_PASSWORD=$REDIS_PASSWORD  --image docker.io/bitnami/redis:7.0.5-debian-11-r0 --command -- sleep infinity
  Use the following command to attach to the pod:
  kubectl exec --tty -i redis-client \
  --namespace default -- bash
2. Connect using the Redis® CLI:
  REDISCLI_AUTH="$REDIS_PASSWORD" redis-cli -h redis-master
  REDISCLI_AUTH="$REDIS_PASSWORD" redis-cli -h redis-replicas
To connect to your database from outside the cluster execute the following commands:
   kubectl port-forward --namespace default svc/redis-master 6379:6379 &
   REDISCLI_AUTH="$REDIS_PASSWORD" redis-cli -h 127.0.0.1 -p 6379


See also[edit]

Advertising: