We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
currently rbd commands don't specify specifc monitors or specific ceph.conf.
That mean that it's only work with the cluster defined in /etc/pve/conf
This could be great to be able to add
and cephx auth + keyring if supported
proxmox code is
/usr/share/perl5/PVE/Storage/RBDPlugin.pm
if ($pveceph_managed) { push @$cmd, '-c', $pveceph_config; } else { push @$cmd, '-m', $hostlist->($scfg->{monhost}, ','); push @$cmd, '--auth_supported', -e $keyring ? 'cephx' : 'none'; } if (-e $keyring) { push @$cmd, '-n', "client.$username"; push @$cmd, '--keyring', $keyring; }
The text was updated successfully, but these errors were encountered:
Hi, in new version.
Best regards
Sorry, something went wrong.
Hello,
It will be great if this update was done :)
I have 2 ceph cluster and i can't backup the second one.
PS : your script is great
No branches or pull requests
Hi,
currently rbd commands don't specify specifc monitors or specific ceph.conf.
That mean that it's only work with the cluster defined in /etc/pve/conf
This could be great to be able to add
or
and cephx auth + keyring if supported
proxmox code is
/usr/share/perl5/PVE/Storage/RBDPlugin.pm
The text was updated successfully, but these errors were encountered: