diff --git a/ansible/group_vars/all.yml b/ansible/group_vars/all.yml
index 8ec4e90fd8e1374c6142d5ed87104778fbee3ae8..eac67aa83a75e94e7705d1a1d12c86e057007799 100644
--- a/ansible/group_vars/all.yml
+++ b/ansible/group_vars/all.yml
@@ -322,6 +322,7 @@ enable_horizon_sahara: "{{ enable_sahara | bool }}"
 enable_horizon_searchlight: "{{ enable_searchlight | bool }}"
 enable_horizon_senlin: "{{ enable_senlin | bool }}"
 enable_horizon_solum: "{{ enable_solum | bool }}"
+enable_horizon_tacker: "{{ enable_tacker | bool }}"
 enable_horizon_trove: "{{ enable_trove | bool }}"
 enable_horizon_watcher: "{{ enable_watcher | bool }}"
 enable_influxdb: "no"
diff --git a/ansible/roles/horizon/tasks/start.yml b/ansible/roles/horizon/tasks/start.yml
index 173cddb12d667fe185174f1ef4d7061885288b06..2d4d9fd2d647876ddb16f467c48b63dfb56fceb9 100644
--- a/ansible/roles/horizon/tasks/start.yml
+++ b/ansible/roles/horizon/tasks/start.yml
@@ -18,6 +18,7 @@
       ENABLE_SEARCHLIGHT: "{{ 'yes' if enable_horizon_searchlight | bool else 'no' }}"
       ENABLE_SENLIN: "{{ 'yes' if enable_horizon_senlin | bool else 'no' }}"
       ENABLE_SOLUM: "{{ 'yes' if enable_horizon_solum | bool else 'no' }}"
+      ENABLE_TACKER: "{{ 'yes' if enable_horizon_tacker | bool else 'no' }}"
       ENABLE_TROVE: "{{ 'yes' if enable_horizon_trove | bool else 'no' }}"
       ENABLE_WATCHER: "{{ 'yes' if enable_horizon_watcher | bool else 'no' }}"
     volumes:
diff --git a/etc/kolla/globals.yml b/etc/kolla/globals.yml
index 3cf3c71fb5a74870a8b1918b7ec652e201861786..88066733ed6ba93b2c5a4fc928693cdbd26074d4 100644
--- a/etc/kolla/globals.yml
+++ b/etc/kolla/globals.yml
@@ -152,6 +152,7 @@ kolla_internal_vip_address: "10.10.10.254"
 #enable_horizon_searchlight: "{{ enable_searchlight | bool }}"
 #enable_horizon_senlin: "{{ enable_senlin | bool }}"
 #enable_horizon_solum: "{{ enable_solum | bool }}"
+#enable_horizon_tacker: "{{ enable_tacker | bool }}"
 #enable_horizon_trove: "{{ enable_trove | bool }}"
 #enable_horizon_watcher: "{{ enable_watcher | bool }}"
 #enable_influxdb: "no"