diff --git a/ansible/roles/murano/tasks/deploy.yml b/ansible/roles/murano/tasks/deploy.yml
new file mode 100644
index 0000000000000000000000000000000000000000..13d6447329e8293efd35fc1db2ffddc3ae0359c1
--- /dev/null
+++ b/ansible/roles/murano/tasks/deploy.yml
@@ -0,0 +1,14 @@
+---
+- include: register.yml
+  when: inventory_hostname in groups['murano-api']
+
+- include: config.yml
+  when: inventory_hostname in groups['murano-api'] or
+        inventory_hostname in groups['murano-engine']
+
+- include: bootstrap.yml
+  when: inventory_hostname in groups['murano-api']
+
+- include: start.yml
+  when: inventory_hostname in groups['murano-api'] or
+        inventory_hostname in groups['murano-engine']
diff --git a/ansible/roles/murano/tasks/main.yml b/ansible/roles/murano/tasks/main.yml
index 13d6447329e8293efd35fc1db2ffddc3ae0359c1..b017e8b4ad9edbc10e43b690b269d460e5b9b1f4 100644
--- a/ansible/roles/murano/tasks/main.yml
+++ b/ansible/roles/murano/tasks/main.yml
@@ -1,14 +1,2 @@
 ---
-- include: register.yml
-  when: inventory_hostname in groups['murano-api']
-
-- include: config.yml
-  when: inventory_hostname in groups['murano-api'] or
-        inventory_hostname in groups['murano-engine']
-
-- include: bootstrap.yml
-  when: inventory_hostname in groups['murano-api']
-
-- include: start.yml
-  when: inventory_hostname in groups['murano-api'] or
-        inventory_hostname in groups['murano-engine']
+- include: "{{ action }}.yml"
diff --git a/ansible/roles/murano/tasks/pull.yml b/ansible/roles/murano/tasks/pull.yml
new file mode 100644
index 0000000000000000000000000000000000000000..5f979e56aa8bb493151b0ed61e08f2ceb994e4b1
--- /dev/null
+++ b/ansible/roles/murano/tasks/pull.yml
@@ -0,0 +1,14 @@
+---
+- name: Pulling murano-api image
+  kolla_docker:
+    action: "pull_image"
+    common_options: "{{ docker_common_options }}"
+    image: "{{ murano_api_image_full }}"
+  when: inventory_hostname in groups['murano-api']
+
+- name: Pulling murano-engine image
+  kolla_docker:
+    action: "pull_image"
+    common_options: "{{ docker_common_options }}"
+    image: "{{ murano_engine_image_full }}"
+  when: inventory_hostname in groups['murano-engine']