Difference between revisions of "Helm install redis bitnami/redis"
Jump to navigation
Jump to search
(Created page with "{{lc}} helm install redis bitnami/redis * {{Bitnami}} * {{Redis}}") |
Tags: Mobile web edit, Mobile edit |
||
(2 intermediate revisions by 2 users not shown) | |||
Line 2: | Line 2: | ||
[[helm install]] redis [[bitnami/redis]] | [[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 == | ||
* {{Bitnami}} | * {{Bitnami}} | ||
* {{Redis}} | * {{Redis}} | ||
+ | |||
+ | [[Category:Redis]] |
Latest revision as of 08:01, 9 March 2023
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]
- Bitnami, Kubeapps, Bitnami/,
helm search repo bitnami
, VMware Application Catalog,ctlscript.sh
- Redis, installation,
/etc/redis.conf, values.yml
, Redis Cluster, Redis Sentinel,/etc/redis-sentinel.conf
, Redis memory footprint,redis-cli, redis-benchmark, redis-check-aof, redis-check-rdb, redis-sentinel, redis-server
, Amazon MemoryDB for Redis, AOF, Redis changelog, Redis Database (RDB), Append Only File (AOF), Redis logs
Advertising: