blob: 03ff8a32ca2923c9cb24f369b51b6bae9aca9b43 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# {{ cephadm_managed }}
NFS_CORE_PARAM {
Enable_NLM = {{ enable_nlm }};
Enable_RQUOTA = false;
Protocols = 4;
NFS_Port = {{ port }};
allow_set_io_flusher_fail = true;
{% if bind_addr %}
Bind_addr = {{ bind_addr }};
{% endif %}
{% if haproxy_hosts %}
HAProxy_Hosts = {{ haproxy_hosts|join(", ") }};
{% endif %}
}
NFSv4 {
Delegations = false;
RecoveryBackend = 'rados_cluster';
Minor_Versions = 1, 2;
{% if nfs_idmap_conf %}
IdmapConf = "{{ nfs_idmap_conf }}";
{% endif %}
}
RADOS_KV {
UserId = "{{ user }}";
nodeid = "{{ nodeid }}";
pool = "{{ pool }}";
namespace = "{{ namespace }}";
}
RADOS_URLS {
UserId = "{{ user }}";
watch_url = "{{ url }}";
}
RGW {
cluster = "ceph";
name = "client.{{ rgw_user }}";
}
%url {{ url }}
|