Matrix Docker Ansible eploy
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 

17 行
641 B

  1. ---
  2. - name: Fail if Prometheus not enabled
  3. ansible.builtin.fail:
  4. msg: >
  5. You need to enable `matrix_prometheus_enabled` to use Prometheus as data source for Grafana.
  6. when: "not matrix_prometheus_enabled"
  7. - name: (Deprecation) Catch and report renamed settings
  8. ansible.builtin.fail:
  9. msg: >-
  10. Your configuration contains a variable, which now has a different name.
  11. Please change your configuration to rename the variable (`{{ item.old }}` -> `{{ item.new }}`).
  12. when: "item.old in vars"
  13. with_items:
  14. - {'old': 'matrix_grafana_dashboard_download_urls_all', 'new': 'matrix_grafana_dashboard_download_urls'}