diff --git a/ansible/roles/haproxy/tasks/precheck.yml b/ansible/roles/haproxy/tasks/precheck.yml
index 8a68c6c8906d5a48e0d3d66dfb7320bc623ca7ea..0d5972e77756487682957b50a86082d1a3b0b7ee 100644
--- a/ansible/roles/haproxy/tasks/precheck.yml
+++ b/ansible/roles/haproxy/tasks/precheck.yml
@@ -58,6 +58,28 @@
     - inventory_hostname in groups['haproxy']
     - "{{ 'glance_registry' not in haproxy_stat }}"
 
+- name: Checking free port for Heat API HAProxy
+  wait_for:
+    host: "{{ kolla_internal_vip_address }}"
+    port: "{{ heat_api_port }}"
+    connect_timeout: 1
+    state: stopped
+  when:
+    - enable_heat | bool
+    - "{{ 'heat_api' not in haproxy_stat }}"
+    - inventory_hostname in groups['haproxy']
+
+- name: Checking free port for Heat API CFN HAProxy
+  wait_for:
+    host: "{{ kolla_internal_vip_address }}"
+    port: "{{ heat_api_cfn_port }}"
+    connect_timeout: 1
+    state: stopped
+  when:
+    - enable_heat | bool
+    - "{{ 'heat_api_cfn' not in haproxy_stat }}"
+    - inventory_hostname in groups['haproxy']
+
 - name: Checking free port for watcher API HAProxy
   wait_for:
     host: "{{ kolla_internal_vip_address }}"
diff --git a/ansible/roles/heat/tasks/precheck.yml b/ansible/roles/heat/tasks/precheck.yml
index ed97d539c095cf1413af30cc23dea272095b97dd..6391fbdffdaba2c578eadf0f206ab6d055f09199 100644
--- a/ansible/roles/heat/tasks/precheck.yml
+++ b/ansible/roles/heat/tasks/precheck.yml
@@ -1 +1,27 @@
 ---
+- name: Get container facts
+  kolla_container_facts:
+    name:
+      - heat_api
+      - heat_api_cfn
+  register: container_facts
+
+- name: Checking free port for Heat API
+  wait_for:
+    host: "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}"
+    port: "{{ heat_api_port }}"
+    connect_timeout: 1
+    state: stopped
+  when:
+    - container_facts['heat_api'] is not defined
+    - inventory_hostname in groups['heat-api']
+
+- name: Checking free port for Heat API CFN
+  wait_for:
+    host: "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}"
+    port: "{{ heat_api_cfn_port }}"
+    connect_timeout: 1
+    state: stopped
+  when:
+    - container_facts['heat_api_cfn'] is not defined
+    - inventory_hostname in groups['heat-api-cfn']
diff --git a/ansible/roles/prechecks/tasks/port_checks.yml b/ansible/roles/prechecks/tasks/port_checks.yml
index 9e94f9065c929b5bad60234a02e22dfccb09fba5..b2427d886909f571b39a2cea0538df53e616ae18 100644
--- a/ansible/roles/prechecks/tasks/port_checks.yml
+++ b/ansible/roles/prechecks/tasks/port_checks.yml
@@ -193,45 +193,9 @@
     - enable_haproxy | bool
     - inventory_hostname in groups['haproxy']
 
-- name: Checking free port for Heat API
-  wait_for:
-    host: "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}"
-    port: "{{ heat_api_port }}"
-    connect_timeout: 1
-    state: stopped
-  when:
-    - enable_heat | bool
-    - inventory_hostname in groups['heat-api']
 
-- name: Checking free port for Heat API HAProxy
-  wait_for:
-    host: "{{ kolla_internal_vip_address }}"
-    port: "{{ heat_api_port }}"
-    connect_timeout: 1
-    state: stopped
-  when:
-    - enable_heat | bool
-    - inventory_hostname in groups['haproxy']
 
-- name: Checking free port for Heat API CFN
-  wait_for:
-    host: "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}"
-    port: "{{ heat_api_cfn_port }}"
-    connect_timeout: 1
-    state: stopped
-  when:
-    - enable_heat | bool
-    - inventory_hostname in groups['heat-api-cfn']
 
-- name: Checking free port for Heat API CFN HAProxy
-  wait_for:
-    host: "{{ kolla_internal_vip_address }}"
-    port: "{{ heat_api_cfn_port }}"
-    connect_timeout: 1
-    state: stopped
-  when:
-    - enable_heat | bool
-    - inventory_hostname in groups['haproxy']
 
 - name: Checking free port for Horizon
   wait_for: