Matrix Docker Ansible eploy
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 

19 wiersze
632 B

  1. ---
  2. - block:
  3. - when: matrix_prometheus_node_exporter_enabled | bool and matrix_prometheus_node_exporter_metrics_proxying_enabled | bool
  4. ansible.builtin.include_tasks: "{{ role_path }}/tasks/inject_into_nginx_proxy.yml"
  5. tags:
  6. - setup-all
  7. - setup-nginx-proxy
  8. - block:
  9. - when: matrix_prometheus_node_exporter_enabled | bool
  10. ansible.builtin.include_tasks: "{{ role_path }}/tasks/setup_install.yml"
  11. - when: not matrix_prometheus_node_exporter_enabled | bool
  12. ansible.builtin.include_tasks: "{{ role_path }}/tasks/setup_uninstall.yml"
  13. tags:
  14. - setup-all
  15. - setup-prometheus-node-exporter