service-ansible/deploy.yaml

32 lines
508 B
YAML

---
- name: "Deploy prometheus configuration"
hosts: monitoring
roles:
- prometheus
- name: "Deploy matrix configuration"
hosts: matrix
roles:
- matrix
- name: "Deploy nexus configuration"
hosts: nexus
roles:
- nexus
- name: "Deploy swagger configuration and update"
hosts: swagger
roles:
- swagger
- name: "Deploy drone configuration and update"
hosts: drone
roles:
- drone
- name: "Update services automatically"
hosts: commonupdate
roles:
- update
...