Hi, proxmox 7, after creating "pveceph osd create .... --encrypted" whith no error, ceph don't go up after restart, because missing activate stage. I use workaround :
It exist clear solution or I forgoted something ?
Bash:
root@pve2:~# diff ceph-volume@lvm-1-344652ac-ae8f-4efc-af63-1dcf00f73d92.service /etc/systemd/system/multi-user.target.wants/ceph-volume@lvm-1-344652ac-ae8f-4efc-af63-1dcf00f73d92.service
10c10
< ExecStart=/bin/sh -c 'timeout $CEPH_VOLUME_TIMEOUT /usr/sbin/ceph-volume-systemd %i'
---
> ExecStart=/bin/bash -c 'timeout $CEPH_VOLUME_TIMEOUT /usr/sbin/ceph-volume-systemd %i ; param=`echo %i | sed "s/^lvm-//g" | sed "s/-/ /"` ; ceph-volume lvm activate --bluestore $param '
It exist clear solution or I forgoted something ?