From 24f4fcdd22f8d9c5fa91c03d5448fd3885e0cc78 Mon Sep 17 00:00:00 2001 From: Carlos Goncalves Date: Fri, 30 Mar 2018 15:57:19 +0100 Subject: [PATCH] Add Octavia Horizon plugin Change-Id: I2f5d70bb5707b940387d613879bf2caab35d6bd9 --- ansible/group_vars/all.yml | 1 + ansible/roles/horizon/defaults/main.yml | 1 + etc/kolla/globals.yml | 1 + releasenotes/notes/add-octavia-dashboard-f6595d27c034f89c.yaml | 3 +++ 4 files changed, 6 insertions(+) create mode 100644 releasenotes/notes/add-octavia-dashboard-f6595d27c034f89c.yaml diff --git a/ansible/group_vars/all.yml b/ansible/group_vars/all.yml index e8a84fa9ba..c2d7297122 100644 --- a/ansible/group_vars/all.yml +++ b/ansible/group_vars/all.yml @@ -418,6 +418,7 @@ enable_horizon_manila: "{{ enable_manila | bool }}" enable_horizon_mistral: "{{ enable_mistral | bool }}" enable_horizon_murano: "{{ enable_murano | bool }}" enable_horizon_neutron_lbaas: "{{ enable_neutron_lbaas | bool }}" +enable_horizon_octavia: "{{ enable_octavia | bool }}" enable_horizon_sahara: "{{ enable_sahara | bool }}" enable_horizon_searchlight: "{{ enable_searchlight | bool }}" enable_horizon_senlin: "{{ enable_senlin | bool }}" diff --git a/ansible/roles/horizon/defaults/main.yml b/ansible/roles/horizon/defaults/main.yml index 58a2894043..12f661165b 100644 --- a/ansible/roles/horizon/defaults/main.yml +++ b/ansible/roles/horizon/defaults/main.yml @@ -20,6 +20,7 @@ horizon_services: ENABLE_MISTRAL: "{{ 'yes' if enable_horizon_mistral | bool else 'no' }}" ENABLE_MURANO: "{{ 'yes' if enable_horizon_murano | bool else 'no' }}" ENABLE_NEUTRON_LBAAS: "{{ 'yes' if enable_horizon_neutron_lbaas | bool else 'no' }}" + ENABLE_OCTAVIA: "{{ 'yes' if enable_horizon_octavia | bool else 'no' }}" ENABLE_SAHARA: "{{ 'yes' if enable_horizon_sahara | bool else 'no' }}" ENABLE_SEARCHLIGHT: "{{ 'yes' if enable_horizon_searchlight | bool else 'no' }}" ENABLE_SENLIN: "{{ 'yes' if enable_horizon_senlin | bool else 'no' }}" diff --git a/etc/kolla/globals.yml b/etc/kolla/globals.yml index fb3a7889d0..c58436063b 100644 --- a/etc/kolla/globals.yml +++ b/etc/kolla/globals.yml @@ -177,6 +177,7 @@ kolla_internal_vip_address: "10.10.10.254" #enable_horizon_mistral: "{{ enable_mistral | bool }}" #enable_horizon_murano: "{{ enable_murano | bool }}" #enable_horizon_neutron_lbaas: "{{ enable_neutron_lbaas | bool }}" +#enable_horizon_octavia: "{{ enable_octavia | bool }}" #enable_horizon_sahara: "{{ enable_sahara | bool }}" #enable_horizon_searchlight: "{{ enable_searchlight | bool }}" #enable_horizon_senlin: "{{ enable_senlin | bool }}" diff --git a/releasenotes/notes/add-octavia-dashboard-f6595d27c034f89c.yaml b/releasenotes/notes/add-octavia-dashboard-f6595d27c034f89c.yaml new file mode 100644 index 0000000000..660e1a4d2c --- /dev/null +++ b/releasenotes/notes/add-octavia-dashboard-f6595d27c034f89c.yaml @@ -0,0 +1,3 @@ +--- +features: + - Add Octavia Horizon plugin