diff --git a/ansible/group_vars/all.yml b/ansible/group_vars/all.yml index 29a1fada4f..b3ac5b6cd1 100644 --- a/ansible/group_vars/all.yml +++ b/ansible/group_vars/all.yml @@ -288,6 +288,7 @@ enable_heat: "yes" enable_horizon: "yes" enable_horizon_cloudkitty: "{{ enable_cloudkitty | bool }}" enable_horizon_ironic: "{{ enable_ironic | bool }}" +enable_horizon_karbor: "{{ enable_karbor | bool }}" enable_horizon_magnum: "{{ enable_magnum | bool }}" enable_horizon_manila: "{{ enable_manila | bool }}" enable_horizon_mistral: "{{ enable_mistral | bool }}" diff --git a/ansible/roles/horizon/tasks/start.yml b/ansible/roles/horizon/tasks/start.yml index 0b44791ad5..042c6a49ea 100644 --- a/ansible/roles/horizon/tasks/start.yml +++ b/ansible/roles/horizon/tasks/start.yml @@ -8,6 +8,7 @@ environment: ENABLE_CLOUDKITTY: "{{ 'yes' if enable_horizon_cloudkitty | bool else 'no' }}" ENABLE_IRONIC: "{{ 'yes' if enable_horizon_ironic | bool else 'no' }}" + ENABLE_KARBOR: "{{ 'yes' if enable_horizon_karbor | bool else 'no' }}" ENABLE_MAGNUM: "{{ 'yes' if enable_horizon_magnum | bool else 'no' }}" ENABLE_MANILA: "{{ 'yes' if enable_horizon_manila | bool else 'no' }}" ENABLE_MISTRAL: "{{ 'yes' if enable_horizon_mistral | bool else 'no' }}" diff --git a/etc/kolla/globals.yml b/etc/kolla/globals.yml index 3b8d3d5fd3..3323c0b0d0 100644 --- a/etc/kolla/globals.yml +++ b/etc/kolla/globals.yml @@ -138,6 +138,7 @@ kolla_internal_vip_address: "10.10.10.254" #enable_horizon: "yes" #enable_horizon_cloudkitty: "{{ enable_cloudkitty | bool }}" #enable_horizon_ironic: "{{ enable_ironic | bool }}" +#enable_horizon_karbor: "{{ enable_karbor | bool }}" #enable_horizon_magnum: "{{ enable_magnum | bool }}" #enable_horizon_manila: "{{ enable_manila | bool }}" #enable_horizon_mistral: "{{ enable_mistral | bool }}"