2016-05-06 02:20:03 +08:00
|
|
|
#jinja2: trim_blocks: "true", lstrip_blocks: "true"
|
|
|
|
# {{ ansible_managed }}
|
|
|
|
|
2016-08-18 20:24:48 +08:00
|
|
|
{% if nfs_file_gw %}
|
2016-05-06 02:20:03 +08:00
|
|
|
EXPORT
|
|
|
|
{
|
2016-07-21 21:17:19 +08:00
|
|
|
Export_ID={{ ceph_nfs_ceph_export_id }};
|
2016-05-06 02:20:03 +08:00
|
|
|
|
|
|
|
Path = "/";
|
|
|
|
|
2016-07-21 21:17:19 +08:00
|
|
|
Pseudo = {{ ceph_nfs_ceph_pseudo_path }};
|
2016-05-06 02:20:03 +08:00
|
|
|
|
2016-07-21 21:17:19 +08:00
|
|
|
Access_Type = {{ ceph_nfs_ceph_access_type }};
|
2016-05-06 02:20:03 +08:00
|
|
|
|
2017-09-03 23:32:44 +08:00
|
|
|
Protocols = {{ ceph_nfs_ceph_protocols }};
|
2016-05-06 02:20:03 +08:00
|
|
|
|
2017-09-03 23:32:44 +08:00
|
|
|
Transports = TCP;
|
2016-05-06 02:20:03 +08:00
|
|
|
|
|
|
|
Sectype = sys,krb5,krb5i,krb5p;
|
|
|
|
|
|
|
|
FSAL {
|
|
|
|
Name = CEPH;
|
2017-09-15 23:38:19 +08:00
|
|
|
User_Id = "{{ ceph_nfs_ceph_user }}";
|
2016-05-06 02:20:03 +08:00
|
|
|
}
|
2017-09-03 23:32:44 +08:00
|
|
|
|
|
|
|
{{ ganesha_ceph_export_overrides | default(None) }}
|
2016-05-06 02:20:03 +08:00
|
|
|
}
|
2016-07-21 21:17:19 +08:00
|
|
|
{% endif %}
|
2016-08-18 20:24:48 +08:00
|
|
|
{% if nfs_obj_gw %}
|
2016-07-21 21:17:19 +08:00
|
|
|
EXPORT
|
|
|
|
{
|
|
|
|
Export_ID={{ ceph_nfs_rgw_export_id }};
|
|
|
|
|
|
|
|
Path = "/";
|
|
|
|
|
|
|
|
Pseudo = {{ ceph_nfs_rgw_pseudo_path }};
|
|
|
|
|
|
|
|
Access_Type = {{ ceph_nfs_rgw_access_type }};
|
|
|
|
|
2017-09-03 23:32:44 +08:00
|
|
|
Protocols = {{ ceph_nfs_rgw_protocols }};
|
2016-07-21 21:17:19 +08:00
|
|
|
|
2017-09-03 23:32:44 +08:00
|
|
|
Transports = TCP;
|
2016-07-21 21:17:19 +08:00
|
|
|
|
|
|
|
Sectype = sys,krb5,krb5i,krb5p;
|
|
|
|
|
|
|
|
FSAL {
|
|
|
|
Name = RGW;
|
|
|
|
User_Id = "{{ ceph_nfs_rgw_user }}";
|
|
|
|
Access_Key_Id ="{{ ceph_nfs_rgw_access_key }}";
|
|
|
|
Secret_Access_Key = "{{ ceph_nfs_rgw_secret_key }}";
|
|
|
|
}
|
2017-09-03 23:32:44 +08:00
|
|
|
|
|
|
|
{{ ganesha_rgw_export_overrides | default(None) }}
|
|
|
|
|
2016-07-21 21:17:19 +08:00
|
|
|
}
|
2017-09-11 11:34:36 +08:00
|
|
|
|
|
|
|
RGW {
|
|
|
|
ceph_conf = "/etc/ceph/{{ cluster }}.conf";
|
|
|
|
cluster = "{{ cluster }}";
|
|
|
|
name = "{{ rgw_client_name }}";
|
|
|
|
{{ ganesha_rgw_section_overrides | default(None) }}
|
|
|
|
}
|
2016-07-21 21:17:19 +08:00
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
LOG {
|
|
|
|
Facility {
|
|
|
|
name = FILE;
|
|
|
|
destination = "{{ ceph_nfs_log_file }}";
|
|
|
|
enable = active;
|
|
|
|
}
|
2017-09-03 23:32:44 +08:00
|
|
|
|
|
|
|
{{ ganesha_log_overrides | default(None) }}
|
2016-07-21 21:17:19 +08:00
|
|
|
}
|
2017-09-03 23:32:44 +08:00
|
|
|
|
|
|
|
{{ ganesha_conf_overrides | default(None) }}
|