Hello Team,

I am integrating Openstack 2024.1 with ceph cluster reef running on ubuntu 22.05, I have configured openstack global as follow:

ceph_nova_keyring: "ceph.client.nova.keyring"
ceph_nova_user: "nova"
ceph_nova_pool_name: "vms"

I have copied nova keyring too from /etc/ceph to /etc/kolla/config/nova ;

/etc/kolla/config/nova$ ls -l
total 16
-rw-r--r-- 1 stack stack  64 Jan  7 13:12 ceph.client.cinder.keyring
-rw-r--r-- 1 stack stack  62 Jan  7 15:11 ceph.client.nova.keyring
-rw-r--r-- 1 stack stack 283 Jan  7 14:51 ceph.conf
-rw-rw-r-- 1 stack stack 182 Jan  7 15:14 nova.conf
(kolla-ansible) stack@open-deployment:/etc/kolla/config/nova$

I have created nova user in ceph :
sudo ceph auth get-or-create client.nova mon 'profile rbd' osd 'profile rbd pool=vms, profile rbd pool=images' mgr 'profile rbd pool=vms' -o /etc/ceph/ceph.client.nova.keyring

But while deploying I am facing the following issue : TASK [nova-cell : Check nova keyring file] ********************************************************************************************
fatal: [compute1 -> localhost]: FAILED! => {"msg": "No file was found when using first_found."}
fatal: [compute2 -> localhost]: FAILED! => {"msg": "No file was found when using first_found."}
fatal: [compute3 -> localhost]: FAILED! => {"msg": "No file was found when using first_found."}

the same error is occuring also when deploying allinone . I tried two different release : 2023.2 and 2024.1 , this is the ansible version installed : pip install 'ansible>=8,<9'

tree /etc/kolla/config/
/etc/kolla/config/
├── cinder
│   ├── ceph.conf
│   ├── cinder-backup
│   │   ├── ceph.client.cinder-backup.keyring
│   │   └── ceph.client.cinder.keyring
│   └── cinder-volume
│       └── ceph.client.cinder.keyring
├── glance
│   ├── ceph.client.cinder.keyring
│   ├── ceph.client.glance.keyring
│   └── ceph.conf
└── nova
    ├── ceph.client.cinder.keyring
    ├── ceph.client.nova.keyring
    └── ceph.conf

Kindly help to solve the issue , it takes long time without solution. previously was not occured on 2023.1 

Best Regards

Michel