-
Notifications
You must be signed in to change notification settings - Fork 12
Open
Labels
questionFurther information is requestedFurther information is requested
Description
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
$ TXlQYXNzd29yZENoYW5nZWQxMjMKapiVersion: 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-sideThis 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.Note
If i don't change the file overlays/1-namespaced/patches/redis.secret.yaml the deployment is working.
Metadata
Metadata
Assignees
Labels
questionFurther information is requestedFurther information is requested