ansible-collection-prometheus/roles/postgres_exporter/TROUBLESHOOTING.md
Oleg Klyuchkin 06490d7c8b
feat: Add postgres_exporter role (#291)
* feat: Add postgres_exporter role

---------

Signed-off-by: anviar <oleg.kluchkin+github@gmail.com>
2024-02-22 14:44:11 +01:00

613 B

Troubleshooting

Bad requests (HTTP 400)

This role downloads checksums from the Github project to verify the integrity of artifacts installed on your servers. When downloading the checksums, a "bad request" error might occur.

This happens in environments which (knowningly or unknowling) use the netrc mechanism to auto-login into servers.

Unless netrc is needed by your playbook and ansible roles, please unset the var like so:

$ NETRC= ansible-playbook ...

Or:

$ export NETRC=
$ ansible-playbook ...