mirror of https://github.com/ceph/ceph-ansible.git
commit
900eefd5e3
|
@ -75,7 +75,7 @@ rbd_concurrent_management_ops: 20
|
||||||
rbd_client_directories: false # this will create rbd_client_log_path and rbd_client_admin_socket_path directories with proper permissions, this WON'T work if libvirt and kvm are installed
|
rbd_client_directories: false # this will create rbd_client_log_path and rbd_client_admin_socket_path directories with proper permissions, this WON'T work if libvirt and kvm are installed
|
||||||
rbd_client_log_file: /var/log/rbd-clients/qemu-guest-$pid.log # must be writable by QEMU and allowed by SELinux or AppArmor
|
rbd_client_log_file: /var/log/rbd-clients/qemu-guest-$pid.log # must be writable by QEMU and allowed by SELinux or AppArmor
|
||||||
rbd_client_log_path: /var/log/rbd-clients/
|
rbd_client_log_path: /var/log/rbd-clients/
|
||||||
rbd_client_admin_socket_path: /var/run/ceph/rbd-clients/$cluster-$type.$id.$pid.$cctid.asok # must be writable by QEMU and allowed by SELinux or AppArmor
|
rbd_client_admin_socket_path: /var/run/ceph/rbd-clients/ # must be writable by QEMU and allowed by SELinux or AppArmor
|
||||||
|
|
||||||
## Monitor options
|
## Monitor options
|
||||||
#
|
#
|
||||||
|
|
|
@ -50,3 +50,11 @@
|
||||||
- restart ceph osds on ubuntu
|
- restart ceph osds on ubuntu
|
||||||
- restart ceph mdss
|
- restart ceph mdss
|
||||||
- restart ceph rgws
|
- restart ceph rgws
|
||||||
|
|
||||||
|
- name: create rbd client directory
|
||||||
|
file: >
|
||||||
|
path={{ rbd_client_admin_socket_path }}
|
||||||
|
state=directory
|
||||||
|
owner=root
|
||||||
|
group=root
|
||||||
|
mode=0644
|
||||||
|
|
|
@ -65,7 +65,7 @@
|
||||||
rbd cache = {{ rbd_cache }}
|
rbd cache = {{ rbd_cache }}
|
||||||
rbd cache writethrough until flush = true
|
rbd cache writethrough until flush = true
|
||||||
rbd concurrent management ops = {{ rbd_concurrent_management_ops }}
|
rbd concurrent management ops = {{ rbd_concurrent_management_ops }}
|
||||||
admin socket = {{ rbd_client_admin_socket_path }} # must be writable by QEMU and allowed by SELinux or AppArmor
|
admin socket = {{ rbd_client_admin_socket_path }}/$cluster-$type.$id.$pid.$cctid.asok # must be writable by QEMU and allowed by SELinux or AppArmor
|
||||||
log file = {{ rbd_client_log_file }} # must be writable by QEMU and allowed by SELinux or AppArmor
|
log file = {{ rbd_client_log_file }} # must be writable by QEMU and allowed by SELinux or AppArmor
|
||||||
|
|
||||||
[mon]
|
[mon]
|
||||||
|
|
Loading…
Reference in New Issue