gardar
gardar
Looks like it's attempting to install the collection as a role, does `ansible-galaxy collection install -r meta/requirements.yml` work?
Do you by any chance have `prometheus_alert_rules_files` configured as a string and not a list? See #454 for further explanation
Hmm, what does your playbook look like? And can you show me the debug log of the task?
@MajorP93 Any chance you could try to use ` "{{ prometheus_alert_rules_files | map('ansible.builtin.fileglob') | flatten | list }}"` and report back if that fixes the issue?
PR's welcome
The `prometheus_alert_rules_files` variable should be a list. ``` # config prometheus_alert_rules_files: - roles/prometheus-eve/files/rules/*.yml ``` Not sure why the argument spec validation isn't catching this, it was also reported in #444...
That assert task was introduced in #333 and is to help users migrating from .rules to .yml and is unrelated to this. While we could definitely add a task to...
Looks like this is by design as apparently the argument validation is currently just for ensuring the variable can be converted into the type specified in the argument spec and...
https://github.com/prometheus-community/ansible/pull/499
The sudo policy should not be used for every installation of ipmi_exporter since it only applies to the local mode. Also, perhaps a better solution would be to just use...