While trying to deploy a fresh install of operator v2.1.0, I got issue trying to change the Redis Password
I try to change the password from file overlays/1-namespaced/patches/redis.secret.yaml
Here are the steps to reproduce :
- Generate a new password :
# Generate a new password
$ echo MyPasswordChanged123 | base64
$ TXlQYXNzd29yZENoYW5nZWQxMjMK
- Update
overlays/1-namespaced/patches/redis.secret.yaml :
apiVersion: v1
kind: Secret
metadata:
name: redis
type: Opaque
data:
- # IMPORTANT: replace this password!
- #redis-password: bXlTZWN1cmVQYXNzd29yZDEy
+ redis-password: TXlQYXNzd29yZENoYW5nZWQxMjMK
- Deploy using as the documentation says :
kustomize build . | kubectl apply -f - --server-side
This leads to an error on Redis-Sentinel pod while deploying the operator on kubernetes :
Startup probe failed: NOAUTH Authentication required. AUTH failed: WRONGPASS invalid username-password pair or user is disabled.
While trying to deploy a fresh install of operator v2.1.0, I got issue trying to change the Redis Password
I try to change the password from file
overlays/1-namespaced/patches/redis.secret.yamlHere are the steps to reproduce :
overlays/1-namespaced/patches/redis.secret.yaml:This leads to an error on Redis-Sentinel pod while deploying the operator on kubernetes :
Note
If i don't change the file
overlays/1-namespaced/patches/redis.secret.yamlthe deployment is working.