diff --git a/ansible/roles/haproxy/tasks/precheck.yml b/ansible/roles/haproxy/tasks/precheck.yml
index bbe5c86e4dee4114fcdeb5a1c8d082dd853fb31e..c1c47027fdd6e8abd6ee41f6266666356fb9eab2 100644
--- a/ansible/roles/haproxy/tasks/precheck.yml
+++ b/ansible/roles/haproxy/tasks/precheck.yml
@@ -179,6 +179,17 @@
     - "{{ 'ironic_api' not in haproxy_stat }}"
     - inventory_hostname in groups['haproxy']
 
+- name: Checking free port for Magnum API HAProxy
+  wait_for:
+    host: "{{ kolla_internal_vip_address }}"
+    port: "{{ magnum_api_port }}"
+    connect_timeout: 1
+    state: stopped
+  when:
+    - enable_magnum | bool
+    - "{{ 'magnum_api' not in haproxy_stat }}"
+    - inventory_hostname in groups['haproxy']
+
 - name: Checking free port for Manila API HAProxy
   wait_for:
     host: "{{ kolla_internal_vip_address }}"
diff --git a/ansible/roles/magnum/tasks/precheck.yml b/ansible/roles/magnum/tasks/precheck.yml
index ed97d539c095cf1413af30cc23dea272095b97dd..1510d9478a8010a30cd6ece672e41c51cbcde764 100644
--- a/ansible/roles/magnum/tasks/precheck.yml
+++ b/ansible/roles/magnum/tasks/precheck.yml
@@ -1 +1,16 @@
 ---
+- name: Get container facts
+  kolla_container_facts:
+    name:
+      - magnum_api
+  register: container_facts
+
+- name: Checking free port for Magnum API
+  wait_for:
+    host: "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}"
+    port: "{{ magnum_api_port }}"
+    connect_timeout: 1
+    state: stopped
+  when:
+    - container_facts['magnum_api'] is not defined
+    - inventory_hostname in groups['magnum-api']
diff --git a/ansible/roles/prechecks/tasks/port_checks.yml b/ansible/roles/prechecks/tasks/port_checks.yml
index aed211487fc770387a3af512dfb5e52239a0ef8b..5eb62696c55bdb091292b4d0ebd76a6711009f8f 100644
--- a/ansible/roles/prechecks/tasks/port_checks.yml
+++ b/ansible/roles/prechecks/tasks/port_checks.yml
@@ -143,26 +143,6 @@
     - enable_iscsid | bool
     - inventory_hostname in groups['tgtd']
 
-- name: Checking free port for Magnum API
-  wait_for:
-    host: "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}"
-    port: "{{ magnum_api_port }}"
-    connect_timeout: 1
-    state: stopped
-  when:
-    - enable_magnum | bool
-    - inventory_hostname in groups['magnum-api']
-
-- name: Checking free port for Magnum API HAProxy
-  wait_for:
-    host: "{{ kolla_internal_vip_address }}"
-    port: "{{ magnum_api_port }}"
-    connect_timeout: 1
-    state: stopped
-  when:
-    - enable_magnum | bool
-    - inventory_hostname in groups['haproxy']
-
 - name: Checking free port for MariaDB
   wait_for:
     host: "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}"