mirror of
https://github.com/hibiken/asynqmon.git
synced 2026-04-27 01:55:51 +03:00
[GH-ISSUE #349] [FEATURE REQUEST] Read password from env also when using sentinel #801
Labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/asynqmon#801
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @ewokndor on GitHub (Dec 23, 2025).
Original GitHub issue: https://github.com/hibiken/asynqmon/issues/349
If I am understanding the docs correctly, then to connect to a sentinel setup, the url is
redis-sentinel://[:password@]host1[:port][,host2:[:port]][,hostN:[:port]][?master=masterName]When deploying to a k8s via git and argocd, this config is (at least in our case) a config entry in a file.
Therefore, the password would be visible, which isn't a good idea obviously.
It would be ideal if the password could be read from
REDIS_PASSWORD, which is set via a secret, if this env var is not empty, so that the image can then internally complete the URL.