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.
 
 

17 wiersze
716 B

  1. - name: Fail if required Dimension settings not defined
  2. fail:
  3. msg: >-
  4. You need to define a required configuration setting (`{{ item }}`) for using Dimension.
  5. with_items:
  6. - "matrix_dimension_access_token"
  7. when: "matrix_dimension_enabled and vars[item] == ''"
  8. - name: (Deprecation) Catch and report renamed Dimension variables
  9. fail:
  10. msg: >-
  11. Your configuration contains a variable, which now has a different name.
  12. Please change your configuration to rename the variable (`{{ item.old }}` -> `{{ item.new }}`).
  13. when: "item.old in vars"
  14. with_items:
  15. - {'old': 'matrix_dimension_container_expose_port', 'new': '<superseded by matrix_dimension_container_http_host_bind_port>'}