prometheus/tasks/asserts.yml
2021-05-25 18:25:22 +02:00

28 lines
763 B
YAML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
- name: 'prometheus | assert | check if ansible version >= 2.7'
assert:
that: ansible_version.full is version_compare(2.7, '>=')
msg: Ansible version 2.7 or later is required to use this version of the role
tags:
- prometheus
- name: 'prometheus | assert | gather the package facts'
ansible.builtin.package_facts:
manager: auto
tags:
- prometheus
- name: 'prometheus | assert | check if docker-ce is installed'
assert:
that: "'docker-ce' in ansible_facts.packages"
tags:
- prometheus
- name: 'prometheus | assert | check if docker pyhon libraries are installed'
assert:
that:
- "'python-docker' in ansible_facts.packages"
- "'python3-docker' in ansible_facts.packages"
tags:
- prometheus