Kickstart fails on boot

Hello Team,
I am automating rocky linux installation.
Rocky9.1 image worked fine.
but rocky8.7 kickstart boot fails with the error
Started cancel waiting for multipath siblings of sda
ive tried this ks script for disk mangment and didnt work this is the exact script that i used for rocky9 that worked fine

ignoredisk --only-use=sda

Partition clearing information

clearpart --all --initlabel

Disk partitioning information

part /boot/efi --fstype=“efi” --ondisk=sda --size=600 --fsoptions=“umask=0077,shortname=winnt”
part / --fstype=“xfs” --ondisk=sda --size=5000 --grow
part /boot --fstype=“xfs” --ondisk=sda --size=1024

and tried this script that use zerombr insted and also same issue
zerombr

Partition clearing information

clearpart --all --initlabel

Disk partitioning information

#autopart --type=lvm
part /boot --fstype=“xfs” --ondisk=vda --size=1024 --label=boot --asprimary
part pv.01 --fstype=“lvmpv” --ondisk=vda --size=15359
volgroup vg_os pv.01
logvol /tmp --fstype=“xfs” --size=1024 --label=“lv_tmp” --name=lv_tmp --vgname=vg_os
logvol / --fstype=“xfs” --size=14331 --label=“lv_root” --name=lv_root --vgname=vg_os