ansible-collection-prometheus/roles/chrony_exporter/tasks/preflight.yml
Jack 2ec62b392b feat: move naive assertion to common role
Signed-off-by: Jack <jack4zhang@gmail.com>
2024-10-30 09:53:00 +08:00

65 lines
2.2 KiB
YAML

---
- name: Common preflight
ansible.builtin.include_role:
name: prometheus.prometheus._common
tasks_from: preflight.yml
vars:
_common_web_listen_address: "{{ chrony_exporter_web_listen_address }}"
- name: Assert that used version supports listen address type
ansible.builtin.assert:
that:
- >-
chrony_exporter_web_listen_address is string
or
(
chrony_exporter_version is version('0.5.0', '>=') and
chrony_exporter_web_listen_address | type_debug == "list"
)
- name: Assert collectors are not both disabled and enabled at the same time
ansible.builtin.assert:
that:
- "item not in chrony_exporter_enabled_collectors"
with_items: "{{ chrony_exporter_disabled_collectors }}"
- name: Assert that TLS config is correct
when: chrony_exporter_tls_server_config | length > 0
block:
- name: Assert that TLS key and cert path are set
ansible.builtin.assert:
that:
- "chrony_exporter_tls_server_config.cert_file is defined"
- "chrony_exporter_tls_server_config.key_file is defined"
- name: Check existence of TLS cert file
ansible.builtin.stat:
path: "{{ chrony_exporter_tls_server_config.cert_file }}"
register: __chrony_exporter_cert_file
- name: Check existence of TLS key file
ansible.builtin.stat:
path: "{{ chrony_exporter_tls_server_config.key_file }}"
register: __chrony_exporter_key_file
- name: Assert that TLS key and cert are present
ansible.builtin.assert:
that:
- "__chrony_exporter_cert_file.stat.exists"
- "__chrony_exporter_key_file.stat.exists"
- name: Discover latest version
ansible.builtin.set_fact:
chrony_exporter_version: "{{ (lookup('url', 'https://api.github.com/repos/{{ _chrony_exporter_repo }}/releases/latest', headers=_github_api_headers,
split_lines=False) | from_json).get('tag_name') | replace('v', '') }}"
run_once: true
until: chrony_exporter_version is version('0.0.0', '>=')
retries: 10
when:
- chrony_exporter_version == "latest"
tags:
- chrony_exporter
- install
- chrony_exporter_install
- download
- chrony_exporter_download