No description
Find a file
2025-10-06 22:19:52 +00:00
defaults update common format 2025-10-06 22:19:52 +00:00
meta initial commit 2024-11-27 05:12:34 +00:00
tasks update common format 2025-10-06 22:19:52 +00:00
.gitignore update common format 2025-10-06 22:19:52 +00:00
README.md update image value name, fix readme title 2024-12-18 23:38:03 +00:00

ansible-roles-node-exporter

This role will deploy a podman based node exporter

External roles could handle tls termination if encryption is needed

- name: Setup node-exporters
  hosts: node-exporter
  become: true
  roles:
    - role: node-exporter
      node_exporter_container: quay.io/prometheus/node-exporter:v1.8.2
      node_exporter_port: 9200
    - role: firewalld
      firewalld_add:
        - name: internal
          ports:
            - 9200/tcp

Deploy the role with the following command

ansible-playbook -i hosts site.yml --tags=node-exporter --limit=somehost