diff --git a/ansible/group_vars/all.yml b/ansible/group_vars/all.yml
index 130a3ffb4c..1f3ae639b6 100644
--- a/ansible/group_vars/all.yml
+++ b/ansible/group_vars/all.yml
@@ -424,6 +424,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 9f975a8392..1dd11ea5dc 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 346ff5476c..3f02dab982 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