]> git.proxmox.com Git - ceph.git/blob - 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
1 # {{ cephadm_managed }}
2 NFS_CORE_PARAM {
3 Enable_NLM = false;
4 Enable_RQUOTA = false;
5 Protocols = 4;
6 NFS_Port = {{ port }};
7 {% if bind_addr %}
8 Bind_addr = {{ bind_addr }};
9 {% endif %}
10 }
11
12 MDCACHE {
13 Dir_Chunk = 0;
14 }
15
16 EXPORT_DEFAULTS {
17 Attr_Expiration_Time = 0;
18 }
19
20 NFSv4 {
21 Delegations = false;
22 RecoveryBackend = 'rados_cluster';
23 Minor_Versions = 1, 2;
24 }
25
26 RADOS_KV {
27 UserId = "{{ user }}";
28 nodeid = "{{ nodeid}}";
29 pool = "{{ pool }}";
30 namespace = "{{ namespace }}";
31 }
32
33 RADOS_URLS {
34 UserId = "{{ user }}";
35 watch_url = "{{ url }}";
36 }
37
38 RGW {
39 cluster = "ceph";
40 name = "client.{{ rgw_user }}";
41 }
42
43 %url {{ url }}