1
0
mirror of https://github.com/funkypenguin/geek-cookbook/ synced 2025-12-13 09:46:23 +00:00

Create /var/lib/ceph on base OS

This commit is contained in:
David Young
2017-09-29 07:40:33 +13:00
parent 9c025e4ab9
commit a06849afe0

View File

@@ -35,6 +35,7 @@ I originally provided shared storage to my nodes using GlusterFS (see the next r
Since our Ceph components will be containerized, we need to ensure the SELinux context on the base OS's ceph files is set correctly: Since our Ceph components will be containerized, we need to ensure the SELinux context on the base OS's ceph files is set correctly:
``` ```
mkdir /var/lib/ceph
chcon -Rt svirt_sandbox_file_t /etc/ceph chcon -Rt svirt_sandbox_file_t /etc/ceph
chcon -Rt svirt_sandbox_file_t /var/lib/ceph chcon -Rt svirt_sandbox_file_t /var/lib/ceph
``` ```