Revert "allow HAPROXY_PASSWORD to be a path to a Docker secret - resolve if so"
This reverts commit e8becef76d.
This commit is contained in:
parent
e8becef76d
commit
21f723cb47
1 changed files with 1 additions and 5 deletions
|
|
@ -10,13 +10,9 @@ result = {
|
|||
}
|
||||
|
||||
if os.getenv("HAPROXY_PASSWORD"):
|
||||
password = os.getenv("HAPROXY_PASSWORD")
|
||||
if password.startswith("/run/secrets/"): # support docker secrets
|
||||
with open(password) as passfh:
|
||||
password = passfh.read().strip()
|
||||
result["stats"] = {
|
||||
"username": os.getenv("HAPROXY_USERNAME") if os.getenv("HAPROXY_USERNAME") else "admin",
|
||||
"password": password,
|
||||
"password": os.getenv("HAPROXY_PASSWORD"),
|
||||
"port": os.getenv("HAPROXY_STATS_PORT") if os.getenv("HAPROXY_STATS_PORT") else "1936",
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue