mirror of https://github.com/ceph/ceph-ansible.git
14 lines
558 B
YAML
14 lines
558 B
YAML
|
---
|
||
|
- name: set grafana url
|
||
|
command: "{{ container_exec_cmd }} ceph --cluster {{ cluster }} dashboard set-grafana-api-url {{ dashboard_protocol }}://{{ grafana_server_addr }}:{{ grafana_port }}"
|
||
|
delegate_to: "{{ groups[mon_group_name][0] }}"
|
||
|
run_once: true
|
||
|
changed_when: false
|
||
|
|
||
|
- name: inject grafana dashboard layouts
|
||
|
command: "{{ container_exec_cmd }} ceph --cluster {{ cluster }} dashboard grafana dashboards update"
|
||
|
delegate_to: "{{ groups[mon_group_name][0] }}"
|
||
|
run_once: true
|
||
|
changed_when: false
|
||
|
when: containerized_deployment | bool
|