]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/cephadm/templates/services/nfs/ganesha.conf.j2
import ceph 16.2.7
[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 NFSv4 {
13 Delegations = false;
14 RecoveryBackend = 'rados_cluster';
15 Minor_Versions = 1, 2;
16 }
17
18 RADOS_KV {
19 UserId = "{{ user }}";
20 nodeid = "{{ nodeid }}";
21 pool = "{{ pool }}";
22 namespace = "{{ namespace }}";
23 }
24
25 RADOS_URLS {
26 UserId = "{{ user }}";
27 watch_url = "{{ url }}";
28 }
29
30 RGW {
31 cluster = "ceph";
32 name = "client.{{ rgw_user }}";
33 }
34
35 %url {{ url }}