-
Notifications
You must be signed in to change notification settings - Fork 22
Open
Labels
Description
I have an issue where I may be using the same username for multiple secrets, but only the last listed in the values file is used for authentication.
For example, I have setup secrets
secret1 - username=myuser, authkey=myauthkey1, privkey=myprivkey1
secret2 - username=myuser, authkey=myauthkey1, privkey=myprivkey2
Then in the values.yaml file,
traps:
usernameSecrets:
- secret1
- secret2
In this case when sending traps, only secret2 is authenticated, if I reverse the order of the secrets, then the only traps with secret1 are authenticated.