Matrix Docker Ansible eploy
Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
- ---
-
- - name: Fail if Synapse metrics or Prometheus Node Exporter not enabled
- ansible.builtin.fail:
- msg: >
- You need to enable `matrix_prometheus_scraper_synapse_enabled` and/or `matrix_prometheus_scraper_node_enabled` for Prometheus grab metrics.
- when: "not matrix_prometheus_scraper_synapse_enabled and not matrix_prometheus_scraper_node_enabled"
-
- - name: Fail if required Prometheus settings not defined
- ansible.builtin.fail:
- msg: >
- You need to define a required configuration setting (`{{ item }}`).
- when: "vars[item] == ''"
- with_items:
- - matrix_prometheus_container_network
|