diff --git a/ansible/roles/multipathd/defaults/main.yml b/ansible/roles/multipathd/defaults/main.yml
index 0a2a56dff0fcce60b850387850a33fcf5af2e0df..302655aadd445e0b8c8b7c5f792786b5bed13ec6 100644
--- a/ansible/roles/multipathd/defaults/main.yml
+++ b/ansible/roles/multipathd/defaults/main.yml
@@ -1,6 +1,27 @@
 ---
 project_name: "multipathd"
 
+multipathd_services:
+  multipathd:
+    container_name: multipathd
+    group: multipathd
+    enabled: true
+    ipc_mode: "host"
+    privileged: True
+    image: "{{ multipathd_image_full }}"
+    volumes:
+      - "{{ node_config_directory }}/multipathd/:{{ container_config_directory }}/:ro"
+      - "kolla_logs:/var/log/kolla/"
+      - "/etc/localtime:/etc/localtime:ro"
+      - "/dev/:/dev/"
+      - "/run/:/run/:shared"
+      - "/sys/fs/cgroup:/sys/fs/cgroup:ro"
+      - "/lib/modules:/lib/modules:ro"
+      - "/sys/kernel/config:/configfs"
+      - "cinder:/var/lib/cinder"
+      - "iscsi_info:/etc/iscsi"
+
+
 ####################
 # Docker
 ####################
diff --git a/ansible/roles/multipathd/handlers/main.yml b/ansible/roles/multipathd/handlers/main.yml
new file mode 100644
index 0000000000000000000000000000000000000000..2f71142d549f20ca51b77c3d42eb48800e2450a8
--- /dev/null
+++ b/ansible/roles/multipathd/handlers/main.yml
@@ -0,0 +1,24 @@
+---
+- name: Restart multipathd container
+  vars:
+    service_name: "multipathd"
+    service: "{{ multipathd_services[service_name] }}"
+    config_json: "{{ multipathd_config_jsons.results|selectattr('item.key', 'equalto', service_name)|first }}"
+    multipathd_conf: "{{ multipathd_confs.results|selectattr('item.key', 'equalto', service_name)|first }}"
+    multipathd_container: "{{ check_multipathd_containers.results|selectattr('item.key', 'equalto', service_name)|first }}"
+  become: true
+  kolla_docker:
+    action: "recreate_or_restart_container"
+    common_options: "{{ docker_common_options }}"
+    name: "{{ service.container_name }}"
+    image: "{{ service.image }}"
+    ipc_mode: "{{ service.ipc_mode }}"
+    privileged: "{{ service.privileged }}"
+    volumes: "{{ service.volumes|reject('equalto', '')|list }}"
+  when:
+    - kolla_action != "config"
+    - inventory_hostname in groups[service.group]
+    - service.enabled | bool
+    - config_json.changed | bool
+      or multipathd_conf.changed | bool
+      or multipathd_container.changed | bool
diff --git a/ansible/roles/multipathd/tasks/config.yml b/ansible/roles/multipathd/tasks/config.yml
index 57567133c533b897f7ee501de97fb5e5a25801e7..bed2b99cad9dcef289a3b50e3db6247807cc67ab 100644
--- a/ansible/roles/multipathd/tasks/config.yml
+++ b/ansible/roles/multipathd/tasks/config.yml
@@ -1,31 +1,59 @@
 ---
 - name: Ensuring config directories exist
   file:
-    path: "{{ node_config_directory }}/{{ item }}"
+    path: "{{ node_config_directory }}/{{ item.key }}"
     state: "directory"
     owner: "{{ config_owner_user }}"
     group: "{{ config_owner_group }}"
     mode: "0770"
   become: true
-  when: inventory_hostname in groups['multipathd']
-  with_items:
-    - "multipathd"
+  when:
+    - inventory_hostname in groups[item.value.group]
+    - item.value.enabled | bool
+  with_dict: "{{ multipathd_services }}"
 
 - name: Copying over config.json files for services
   template:
-    src: "{{ item }}.json.j2"
-    dest: "{{ node_config_directory }}/{{ item }}/config.json"
+    src: "{{ item.key }}.json.j2"
+    dest: "{{ node_config_directory }}/{{ item.key }}/config.json"
     mode: "0660"
   become: true
-  when: inventory_hostname in groups['multipathd']
-  with_items:
-    - "multipathd"
+  register: multipathd_config_jsons
+  when:
+    - inventory_hostname in groups[item.value.group]
+    - item.value.enabled | bool
+  with_dict: "{{ multipathd_services }}"
+  notify:
+    - Restart multipathd container
 
 - name: Copying over multipath.conf
   template:
-    src: "{{ role_path }}/templates/multipath.conf.j2"
-    dest: "{{ node_config_directory }}/{{ item }}/multipath.conf"
+    src: "multipath.conf.j2"
+    dest: "{{ node_config_directory }}/{{ item.key }}/multipath.conf"
     mode: "0660"
   become: true
-  with_items:
-    - "multipathd"
+  register: multipathd_confs
+  when:
+    - inventory_hostname in groups[item.value.group]
+    - item.value.enabled | bool
+  with_dict: "{{ multipathd_services }}"
+  notify:
+    - Restart multipathd container
+
+- name: Check multipathd containers
+  kolla_docker:
+    action: "compare_container"
+    common_options: "{{ docker_common_options }}"
+    name: "{{ item.value.container_name }}"
+    image: "{{ item.value.image }}"
+    ipc_mode: "{{ item.value.ipc_mode }}"
+    privileged: "{{ item.value.privileged | default(False) }}"
+    volumes: "{{ item.value.volumes }}"
+  register: check_multipathd_containers
+  when:
+    - kolla_action != "config"
+    - inventory_hostname in groups[item.value.group]
+    - item.value.enabled | bool
+  with_dict: "{{ multipathd_services }}"
+  notify:
+    - Restart multipathd container
diff --git a/ansible/roles/multipathd/tasks/deploy.yml b/ansible/roles/multipathd/tasks/deploy.yml
index fae82a1da69b1030028960c27e126666e622bced..375dcad19b188093ce043545f95307dcaab172dd 100644
--- a/ansible/roles/multipathd/tasks/deploy.yml
+++ b/ansible/roles/multipathd/tasks/deploy.yml
@@ -1,4 +1,5 @@
 ---
 - include_tasks: config.yml
 
-- include_tasks: start.yml
+- name: Flush handlers
+  meta: flush_handlers
diff --git a/ansible/roles/multipathd/tasks/pull.yml b/ansible/roles/multipathd/tasks/pull.yml
index d515cfec17e1efbed2226315e99e40229a4673d0..78b4b72cdada9ce1cd88c486784cef337b60f54a 100644
--- a/ansible/roles/multipathd/tasks/pull.yml
+++ b/ansible/roles/multipathd/tasks/pull.yml
@@ -4,5 +4,8 @@
   kolla_docker:
     action: "pull_image"
     common_options: "{{ docker_common_options }}"
-    image: "{{ multipathd_image_full }}"
-  when: inventory_hostname in groups['multipathd']
+    image: "{{ item.value.image }}"
+  when:
+    - inventory_hostname in groups[item.value.group]
+    - item.value.enabled | bool
+  with_dict: "{{ multipathd_services }}"
diff --git a/ansible/roles/multipathd/tasks/start.yml b/ansible/roles/multipathd/tasks/start.yml
deleted file mode 100644
index fe560dd9def5b6930f57f70672a85ce17e316077..0000000000000000000000000000000000000000
--- a/ansible/roles/multipathd/tasks/start.yml
+++ /dev/null
@@ -1,22 +0,0 @@
----
-- name: Starting multipathd container
-  become: true
-  kolla_docker:
-    action: "start_container"
-    common_options: "{{ docker_common_options }}"
-    image: "{{ multipathd_image_full }}"
-    name: "multipathd"
-    ipc_mode: "host"
-    privileged: True
-    volumes:
-      - "{{ node_config_directory }}/multipathd/:{{ container_config_directory }}/:ro"
-      - "kolla_logs:/var/log/kolla/"
-      - "/etc/localtime:/etc/localtime:ro"
-      - "/dev/:/dev/"
-      - "/run/:/run/:shared"
-      - "/sys/fs/cgroup:/sys/fs/cgroup:ro"
-      - "/lib/modules:/lib/modules:ro"
-      - "/sys/kernel/config:/configfs"
-      - "cinder:/var/lib/cinder"
-      - "iscsi_info:/etc/iscsi"
-  when: inventory_hostname in groups['multipathd']
diff --git a/ansible/roles/multipathd/tasks/upgrade.yml b/ansible/roles/multipathd/tasks/upgrade.yml
index fae82a1da69b1030028960c27e126666e622bced..375dcad19b188093ce043545f95307dcaab172dd 100644
--- a/ansible/roles/multipathd/tasks/upgrade.yml
+++ b/ansible/roles/multipathd/tasks/upgrade.yml
@@ -1,4 +1,5 @@
 ---
 - include_tasks: config.yml
 
-- include_tasks: start.yml
+- name: Flush handlers
+  meta: flush_handlers