Add Portworx CSI support (#1167)
diff --git a/roles/multipathd/handlers/main.yml b/roles/multipathd/handlers/main.yml
index 818a509..e94180b 100644
--- a/roles/multipathd/handlers/main.yml
+++ b/roles/multipathd/handlers/main.yml
@@ -16,3 +16,7 @@
ansible.builtin.service:
name: multipathd
state: reloaded
+
+- name: Reconfigure "multipathd"
+ ansible.builtin.shell:
+ cmd: multipathd -k'reconfigure'
diff --git a/roles/multipathd/tasks/main.yml b/roles/multipathd/tasks/main.yml
index be14d2a..edfff2c 100644
--- a/roles/multipathd/tasks/main.yml
+++ b/roles/multipathd/tasks/main.yml
@@ -12,6 +12,18 @@
# License for the specific language governing permissions and limitations
# under the License.
+- name: Add backports PPA
+ ansible.builtin.apt_repository:
+ repo: ppa:vexxhost/backports
+
+- name: Install the multipathd package
+ ansible.builtin.package:
+ name: multipath-tools
+ state: latest
+ notify:
+ - Reload "multipathd"
+ - Reconfigure "multipathd"
+
- name: Install the configuration file
ansible.builtin.template:
src: multipath.conf.j2
@@ -21,3 +33,4 @@
mode: "0644"
notify:
- Reload "multipathd"
+ - Reconfigure "multipathd"
diff --git a/roles/multipathd/templates/multipath.conf.j2 b/roles/multipathd/templates/multipath.conf.j2
index 6eb0c5f..adc44ac 100644
--- a/roles/multipathd/templates/multipath.conf.j2
+++ b/roles/multipathd/templates/multipath.conf.j2
@@ -2,4 +2,47 @@
defaults {
user_friendly_names {{ multipathd_user_friendly_names | bool | ternary('yes', 'no') }}
+ find_multipaths yes
+}
+
+devices {
+ device {
+ vendor "NVME"
+ product "Pure Storage FlashArray"
+ path_selector "queue-length 0"
+ path_grouping_policy group_by_prio
+ prio ana
+ failback immediate
+ fast_io_fail_tmo 10
+ user_friendly_names no
+ no_path_retry 0
+ features 0
+ dev_loss_tmo 60
+ find_multipaths yes
+ }
+ device {
+ vendor "PURE"
+ product "FlashArray"
+ path_selector "service-time 0"
+ hardware_handler "1 alua"
+ path_grouping_policy group_by_prio
+ prio alua
+ failback immediate
+ path_checker tur
+ fast_io_fail_tmo 10
+ user_friendly_names no
+ no_path_retry 0
+ features 0
+ dev_loss_tmo 600
+ find_multipaths yes
+ }
+}
+
+blacklist {
+ devnode "^pxd[0-9]*"
+ devnode "^pxd*"
+ device {
+ vendor "VMware"
+ product "Virtual disk"
+ }
}