diff --git a/cinder/volume/drivers/pure.py b/cinder/volume/drivers/pure.py index 14079f439cb..6d6222807bc 100644 --- a/cinder/volume/drivers/pure.py +++ b/cinder/volume/drivers/pure.py @@ -3561,7 +3561,8 @@ class PureBaseVolumeDriver(san.SanDriver): ) lacps = list( array.get_network_interfaces( - filter="eth.subtype='lacp_bond'" + filter=("eth.subtype='lacp_bond'" or + "eth.subtype='vif'") ).items ) if lacps: diff --git a/releasenotes/notes/pure_vlan_lacp-d58f141282efb723.yaml b/releasenotes/notes/pure_vlan_lacp-d58f141282efb723.yaml new file mode 100644 index 00000000000..56c3605eaeb --- /dev/null +++ b/releasenotes/notes/pure_vlan_lacp-d58f141282efb723.yaml @@ -0,0 +1,6 @@ +--- +fixes: + - | + [Pure Storage] Resolved issue where LACP bonds are being + defined as part of a VLAN, resulting in target ports + not being correctly identified.