Hi. I'm trying to connect to my redis cluster, but...
# general
o
Hi. I'm trying to connect to my redis cluster, but unable to do so. How I set it up 1. Made a storage namespace 2. Launched the apps and clicked on the creation of the redis application which launched succesfully Code of what doesn't work Pod in the default namespace of the cluster where redis is present
Copy code
import redis
r = redis.StrictRedis(host='redis-master.redis.svc.cluster.local', port=6379, db=0, password='XXX')
r.set('key1', '123')
redis.exceptions.ConnectionError: Error -3 connecting to redis-master.redis.svc.cluster.local:6379. Temporary failure in name resolution. Note: The other steps from the attached image works