]> git.proxmox.com Git - ceph.git/blame - ceph/src/pybind/mgr/cephadm/templates/services/nfs/ganesha.conf.j2
import ceph pacific 16.2.5
[ceph.git] / ceph / src / pybind / mgr / cephadm / templates / services / nfs / ganesha.conf.j2
CommitLineData
e306af50
TL
1# {{ cephadm_managed }}
2NFS_CORE_PARAM {
3 Enable_NLM = false;
4 Enable_RQUOTA = false;
5 Protocols = 4;
b3b6e05e
TL
6 NFS_Port = {{ port }};
7{% if bind_addr %}
8 Bind_addr = {{ bind_addr }};
9{% endif %}
e306af50
TL
10}
11
12MDCACHE {
13 Dir_Chunk = 0;
e306af50
TL
14}
15
16EXPORT_DEFAULTS {
17 Attr_Expiration_Time = 0;
18}
19
20NFSv4 {
21 Delegations = false;
22 RecoveryBackend = 'rados_cluster';
23 Minor_Versions = 1, 2;
24}
25
26RADOS_KV {
27 UserId = "{{ user }}";
28 nodeid = "{{ nodeid}}";
29 pool = "{{ pool }}";
30 namespace = "{{ namespace }}";
31}
32
33RADOS_URLS {
34 UserId = "{{ user }}";
35 watch_url = "{{ url }}";
36}
37
f91f0fd5
TL
38RGW {
39 cluster = "ceph";
40 name = "client.{{ rgw_user }}";
41}
42
e306af50 43%url {{ url }}