Add more linting fixes

This commit is contained in:
Alexander Gorelyshev
2025-12-17 13:47:47 +04:00
parent 3ea7073896
commit c6f604fcc6

View File

@@ -4,13 +4,13 @@
hosts: all
gather_facts: false
any_errors_fatal: true
tasks:
- name: "Sanity check the node exporter"
retries: 5
delay: 1
register: result
failed_when: '"node_exporter_build_info" not in result.content'
register: node_exporter_check
failed_when: '"node_exporter_build_info" not in node_exporter_check.content'
ansible.builtin.uri:
url: "http://localhost:9100/metrics"
return_content: true