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.
 
 

14 wiersze
742 B

  1. - name: Fail if no Sygnal apps defined
  2. fail:
  3. msg: >-
  4. Enabling Sygnal requires that you specify at least one app in `matrix_sygnal_apps`
  5. when: "matrix_sygnal_enabled and matrix_sygnal_apps|length == 0"
  6. - name: Fail if running on a non-supported architecture
  7. fail:
  8. msg: >-
  9. Sygnal can only be used on the amd64 architecture for now.
  10. Only amd64 container images are pushed for the `docker.io/matrixdotorg/sygnal` container image.
  11. Either use a different image (by redefining `matrix_sygnal_docker_image`) or consider contributing self-building support to this role.
  12. when: "matrix_sygnal_enabled and matrix_architecture != 'amd64' and matrix_sygnal_docker_image.startswith('docker.io/matrixdotorg/sygnal')"