infra.yml 802 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. ---
  2. ## FRONTEND
  3. - name: Frontend
  4. hosts: frontend
  5. roles: ['stable/common', 'stable/nginx']
  6. vars_files: vars/frontend.yml
  7. tags: frontend
  8. # ETHERPAD
  9. - name: Etherpad
  10. hosts: paddone
  11. tags: etherpad
  12. roles: ['stable/common', 'stable/etherpad']
  13. vars_files: vars/etherpad.yml
  14. # CICLES
  15. - name: Cicles
  16. hosts: cicles
  17. tags: cicles
  18. roles: ['stable/common', 'stable/goploader']
  19. # GANCIO
  20. - name: Gancio
  21. hosts: gancio
  22. tags: gancio
  23. roles: ['stable/common', 'stable/gancio']
  24. vars_files: vars/gancio.yml
  25. # RADICALE
  26. - name: Radicale
  27. hosts: radicale
  28. tags: radicale
  29. roles: ['stable/common', 'staging/radicale']
  30. vars_files: vars/gancio.yml
  31. # TEST
  32. - name: Test
  33. hosts: test
  34. roles: ['stable/common', 'stable/etherpad', 'stable/nginx']
  35. tags: test
  36. vars_files: vars/frontend.yml