dashboard: fix regression

introduced by ceph/ceph-ansible/pull/7150

when no rgw is present, it fails.

Closes: https://bugzilla.redhat.com/show_bug.cgi?id=2076192

Signed-off-by: Guillaume Abrioux <gabrioux@redhat.com>
subset-debug-6.0
Guillaume Abrioux 2022-04-19 07:12:44 +02:00
parent f4a3f365f8
commit 5596360ffd
1 changed files with 2 additions and 1 deletions

View File

@ -27,9 +27,10 @@
- include_role: - include_role:
name: ceph-facts name: ceph-facts
tasks_from: set_radosgw_address.yml tasks_from: set_radosgw_address.yml
loop: "{{ groups[rgw_group_name] }}" loop: "{{ groups.get(rgw_group_name, []) }}"
loop_control: loop_control:
loop_var: ceph_dashboard_call_item loop_var: ceph_dashboard_call_item
when: groups.get(rgw_group_name, []) | length > 0
- name: disable SSL for dashboard - name: disable SSL for dashboard
when: dashboard_protocol == "http" when: dashboard_protocol == "http"