Add designate dashboard to horizon
This change [0] reverted designate dashboard change because designate was not finished, we forgot to enable again. [0] https://review.openstack.org/#/c/408714/ Change-Id: Ibaf7e5a5dc8cbef619d86a0f2b240d384984e8bd
This commit is contained in:
parent
f5d06eb9c1
commit
9170cda73e
@ -335,6 +335,7 @@ enable_grafana: "no"
|
||||
enable_heat: "yes"
|
||||
enable_horizon: "yes"
|
||||
enable_horizon_cloudkitty: "{{ enable_cloudkitty | bool }}"
|
||||
enable_horizon_designate: "{{ enable_designate | bool }}"
|
||||
enable_horizon_freezer: "{{ enable_freezer | bool }}"
|
||||
enable_horizon_ironic: "{{ enable_ironic | bool }}"
|
||||
enable_horizon_karbor: "{{ enable_karbor | bool }}"
|
||||
|
@ -9,6 +9,7 @@ horizon_services:
|
||||
image: "{{ horizon_image_full }}"
|
||||
environment:
|
||||
ENABLE_CLOUDKITTY: "{{ 'yes' if enable_horizon_cloudkitty | bool else 'no' }}"
|
||||
ENABLE_DESIGNATE: "{{ 'yes' if enable_horizon_designate | bool else 'no' }}"
|
||||
ENABLE_FREEZER: "{{ 'yes' if enable_horizon_freezer | bool else 'no' }}"
|
||||
ENABLE_IRONIC: "{{ 'yes' if enable_horizon_ironic | bool else 'no' }}"
|
||||
ENABLE_KARBOR: "{{ 'yes' if enable_horizon_karbor | bool else 'no' }}"
|
||||
|
@ -64,6 +64,7 @@
|
||||
- { name: "ceilometer", enabled: "{{ enable_ceilometer }}" }
|
||||
- { name: "cinder", enabled: "{{ enable_cinder }}" }
|
||||
- { name: "cloudkitty", enabled: "{{ enable_horizon_cloudkitty }}" }
|
||||
- { name: "designate", enabled: "{{ enable_horizon_designate }}" }
|
||||
- { name: "freezer", enabled: "{{ enable_horizon_freezer }}" }
|
||||
- { name: "glance", enabled: "{{ enable_glance }}" }
|
||||
- { name: "heat", enabled: "{{ enable_heat }}" }
|
||||
|
@ -5,6 +5,7 @@
|
||||
( 'ceilometer', enable_ceilometer ),
|
||||
( 'cinder', enable_cinder ),
|
||||
( 'cloudkitty', enable_horizon_cloudkitty ),
|
||||
( 'designate', enable_horizon_designate ),
|
||||
( 'freezer', enable_horizon_freezer ),
|
||||
( 'glance', enable_glance ),
|
||||
( 'heat', enable_heat ),
|
||||
|
@ -143,6 +143,7 @@ kolla_internal_vip_address: "10.10.10.254"
|
||||
#enable_heat: "yes"
|
||||
#enable_horizon: "yes"
|
||||
#enable_horizon_cloudkitty: "{{ enable_cloudkitty | bool }}"
|
||||
#enable_horizon_designate: "{{ enable_designate | bool }}"
|
||||
#enable_horizon_freezer: "{{ enable_freezer | bool }}"
|
||||
#enable_horizon_ironic: "{{ enable_ironic | bool }}"
|
||||
#enable_horizon_karbor: "{{ enable_karbor | bool }}"
|
||||
|
Loading…
Reference in New Issue
Block a user