deploy.yml 479 B

1234567891011121314151617181920212223242526272829303132333435
  1. ---
  2. - name: prom安装
  3. gather_facts: false
  4. become: yes
  5. hosts:
  6. - monitor
  7. roles:
  8. - prometheus
  9. tags: prom
  10. - name: grafana安装
  11. gather_facts: false
  12. become: yes
  13. hosts:
  14. - monitor
  15. roles:
  16. - grafana
  17. tags: grafana
  18. - name: 部署consul
  19. gather_facts: false
  20. become: yes
  21. hosts: monitor
  22. roles:
  23. - consul
  24. tags: consul
  25. - name: 部署node_exporter
  26. gather_facts: false
  27. become: yes
  28. hosts: exporter
  29. roles:
  30. - node_exporter
  31. tags: ne