Remove incorrect horizon_post_install example

This was accidentally included when importing the role.
The referenced files are cloudkitty dashboards and does not belong here.
Adjutant dashboards are automatically included as part of the os_horizon role so this file is not relevant

Change-Id: I2ef49f81282370ceb1294279170b6a27f82be54f
This commit is contained in:
Jonathan Herlin 2021-04-01 15:56:45 +02:00 committed by Jonathan Herlin
parent a281b811c6
commit 66d3b942ac

View File

@ -1,28 +0,0 @@
- name: Enable the adjutant-dashboard Horizon panel
file:
src: "{{ item.src }}"
path: "{{ item.path }}"
state: "{{ item.state }}"
notify: Restart apache2
with_items:
- src: "{{ horizon_lib_dir }}/adjutantdashboard/enabled/_10_admin_group.py"
path: "{{ horizon_lib_dir }}/openstack_dashboard/local/enabled/_10_admin_group.py"
state: "{{ (horizon_enable_adjutant_ui | bool) | ternary('link', 'absent') }}"
- src: "{{ horizon_lib_dir }}/adjutantdashboard/enabled/_10_project_group.py"
path: "{{ horizon_lib_dir }}/openstack_dashboard/local/enabled/_10_project_group.py"
state: "{{ (horizon_enable_adjutant_ui | bool) | ternary('link', 'absent') }}"
- src: "{{ horizon_lib_dir }}/adjutantdashboard/enabled/_11_admin_hashmap_panel.py"
path: "{{ horizon_lib_dir }}/openstack_dashboard/local/enabled/_11_admin_hashmap_panel.py"
state: "{{ (horizon_enable_adjutant_ui | bool) | ternary('link', 'absent') }}"
- src: "{{ horizon_lib_dir }}/adjutantdashboard/enabled/_11_admin_rating_panel.py"
path: "{{ horizon_lib_dir }}/openstack_dashboard/local/enabled/_11_admin_rating_panel.py"
state: "{{ (horizon_enable_adjutant_ui | bool) | ternary('link', 'absent') }}"
- src: "{{ horizon_lib_dir }}/adjutantdashboard/enabled/_11_project_rating_panel.py"
path: "{{ horizon_lib_dir }}/openstack_dashboard/local/enabled/_11_project_rating_panel.py"
state: "{{ (horizon_enable_adjutant_ui | bool) | ternary('link', 'absent') }}"
- src: "{{ horizon_lib_dir }}/adjutantdashboard/enabled/_12_project_reporting_panel.py"
path: "{{ horizon_lib_dir }}/openstack_dashboard/local/enabled/_12_project_reporting_panel.py"
state: "{{ (horizon_enable_adjutant_ui | bool) | ternary('link', 'absent') }}"
- src: "{{ horizon_lib_dir }}/adjutantdashboard/enabled/_13_admin_pyscripts_panel.py"
path: "{{ horizon_lib_dir }}/openstack_dashboard/local/enabled/_13_admin_pyscripts_panel.py"
state: "{{ (horizon_enable_adjutant_ui | bool) | ternary('link', 'absent') }}"