setup-openstack-iscsi-multipath-storpool: Disable port security

Change-Id: Ibdf9cf1ebd3648508f0b16b5b9e1fa94da1a84ee
diff --git a/playbooks/setup-openstack-iscsi-multipath-storpool/pre.yaml b/playbooks/setup-openstack-iscsi-multipath-storpool/pre.yaml
index 6e5a8c1..b456e73 100644
--- a/playbooks/setup-openstack-iscsi-multipath-storpool/pre.yaml
+++ b/playbooks/setup-openstack-iscsi-multipath-storpool/pre.yaml
@@ -34,6 +34,7 @@
         - { ip_range: "{{ network_ip_sp0 }}", network: "{{ network_sp0 }}", subnet: "{{ subnet_sp0 }}" }
         - { ip_range: "{{ network_ip_sp1 }}", network: "{{ network_sp1 }}", subnet: "{{ subnet_sp1 }}" }
 
+    # TODO: Support port security
     - name: Create the StorPool Ports
       ansible.builtin.command:
         argv:
@@ -46,6 +47,7 @@
           - "{{ item.network }}"
           - --fixed-ip
           - "subnet={{ item.subnet }},ip-address={{ item.ip }}"
+          - --disable-port-security
           - "{{ item.port }}"
       loop:
         - { network: "{{ network_sp_api }}", subnet: "{{ subnet_sp_api }}", ip: "{{ ip_sp_api }}", port: "{{ port_sp_api }}" }