Matrix Docker Ansible eploy
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

27 строки
803 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. - install-all
  9. - install-nginx-proxy
  10. - block:
  11. - when: matrix_prometheus_node_exporter_enabled | bool
  12. ansible.builtin.include_tasks: "{{ role_path }}/tasks/setup_install.yml"
  13. tags:
  14. - setup-all
  15. - setup-prometheus-node-exporter
  16. - install-all
  17. - install-prometheus-node-exporter
  18. - block:
  19. - when: not matrix_prometheus_node_exporter_enabled | bool
  20. ansible.builtin.include_tasks: "{{ role_path }}/tasks/setup_uninstall.yml"
  21. tags:
  22. - setup-all
  23. - setup-prometheus-node-exporter