Storage pool type: cephfs
CephFS implements a POSIX-compliant filesystem, using a Ceph storage cluster to store its data. As CephFS builds upon Ceph, it shares most of its properties. This includes redundancy, scalability, self-healing, and high availability.
|
|
Proxmox VE can manage Ceph setups, which makes configuring a CephFS storage easier. As modern hardware offers a lot of processing power and RAM, running storage services and VMs on same node is possible without a significant performance impact. |
To use the CephFS storage plugin, you must replace the stock Debian Ceph client, by adding our Ceph repository. Once added, run apt update, followed by apt dist-upgrade, in order to get the newest packages.
|
|
Please ensure that there are no other Ceph repositories configured. Otherwise the installation will fail or there will be mixed package versions on the node, leading to unexpected behavior. |
This backend supports the common storage properties nodes, disable, content, as well as the following cephfs specific properties:
Name of the Ceph FS.
List of monitor daemon addresses. Optional, only needed if Ceph is not running on the Proxmox VE cluster.
The local mount point. Optional, defaults to /mnt/pve/<STORAGE_ID>/.
Ceph client ID. Optional, defaults to admin. Use only the ID without the client. prefix.
CephFS subdirectory to mount. Optional, defaults to /.
Access CephFS through FUSE, instead of the kernel client. Optional, defaults to 0.
cephfs: cephfs-external
monhost 10.1.1.20 10.1.1.21 10.1.1.22
path /mnt/pve/cephfs-external
content backup
username pve-cephfs
fs-name cephfs
|
|
Don’t forget to set up the client’s secret key file, if cephx was not disabled. |
|
|
If Ceph is installed locally on the Proxmox VE cluster, the following is done automatically when adding the storage. |
If you use cephx authentication, which is enabled by default, provide the secret of a dedicated identity with only the capabilities required for this storage. The example below uses client.pve-cephfs; do not use client.admin for a storage client.
Export the bare key through SSH to one Proxmox VE node:
# ssh root@<external-ceph-server> \
'ceph auth get-key client.pve-cephfs' > /root/cephfs.secret
Then pass that file and the identity without its client. prefix to pvesm:
# pvesm add cephfs <name> --monhost "10.1.1.20 10.1.1.21 10.1.1.22" \
--content backup --username pve-cephfs --keyring /root/cephfs.secret
After pvesm succeeds, remove /root/cephfs.secret because it contains the key in plain text.
When configuring an external CephFS storage via the GUI, you can copy and paste the secret into the appropriate field.
The secret is only the key itself, as opposed to the rbd backend which also contains a [client.<USER>] section.
The secret will be stored at
# /etc/pve/priv/ceph/<STORAGE_ID>.secret
If the external cluster rotates this identity, replace the stored secret before remounting the storage. The local cephx migration helper never rotates keys of external clusters.
For information about creating the identity and limiting its capabilities, see
Ceph User Management.
[cephusermgmt]
The cephfs backend is a POSIX-compliant filesystem, on top of a Ceph cluster.
| Content types | Image formats | Shared | Snapshots | Clones |
|---|---|---|---|---|
vztmpl iso backup snippets |
none |
yes |
yes[1] |
no |
[1] While no known bugs exist, snapshots are not yet guaranteed to be stable, as they lack sufficient testing.