i am using redis memory db cluster for cahching . i am tring to set a redis user name inside my kubernetes deployment, as my redis memory db version 6.2 , i have set user name inside deployment. is there a way to set this ? currently i geting error like
"redis connection tls true
Redis connection established
adapter listening on [::]:9123
adapter listening on [::]:9122
LTE / UDP forward with port : 35115
LTE / UDP forward with port : 44801
MQTT connection established
WRONGPASS invalid username-password pair or user is disabled.
panic: WRONGPASS invalid username-password pair or user is disabled. "
can you help me how to solve it ?
i have tried to modif redis config map to set user name
I would have the same problem. Is there an environment variable like
REDIS_USER
orREDIS_USERNAME
which allows to specify the user for the login like in theredis-cli -u user:password@host:6379
?Something like this?