The software described in this documentation is either in Extended Support or Sustaining Support. See https://www.oracle.com/us/support/library/enterprise-linux-support-policies-069172.pdf for more information.
Oracle recommends that you upgrade the software described by this documentation as soon as possible.

2.2.3 Kickstart installation fails on multipath device when the ignoredisk --only-use option is used

A kickstart installation fails when the ignoredisk --only-use option is used to point to a multipath device. The problem is that multipath is not started by the time that the installer searches the multipath map to match the device.

The workaround is to specify which drives should not be used in the partitioning section rather than using the --only-use parameter to specify the multipath device that you intend to use. This can be done by using the ignoredisk --drives option. For example:

clearpart --all --initlabel
ignoredisk  --drives=sda,sdb
part /boot --fstype=ext4 --size=500 --asprimary 
      --ondisk=/dev/disk/by-id/scsi-3600144f0cab1f53e000058a15c870904
part / --fstype=ext4 --size=8192 --grow --maxsize=51200 --asprimary 
      --ondisk=/dev/disk/by-id/scsi-3600144f0cab1f53e000058a15c870904
part swap --size=16384 --asprimary 
      --ondisk=/dev/disk/by-id/scsi-3600144f0cab1f53e000058a15c870904

(Bug ID 25548146)