forked from ceph/ceph-iscsi
-
Notifications
You must be signed in to change notification settings - Fork 2
/
iscsi-gateway.cfg_sample
31 lines (25 loc) · 1.12 KB
/
iscsi-gateway.cfg_sample
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
[config]
# name of the *.conf file. A suitable conf file allowing access to the ceph
# cluster from the gateway node is required.
cluster_name = <ceph cluster name>
# Pool name where internal `gateway.conf` object is stored
# pool = rbd
# CephX client name
# cluster_client_name = client.<rados_id> # E.g.: client.admin
# gateway_conf = gateway.conf
# API settings.
# The api supports a number of options that allow you to tailor it to your
# local environment. If you want to run the api under https, you will need to
# create crt/key files that are compatible for each gateway node (i.e. not
# locked to a specific node). SSL crt and key files *must* be called
# iscsi-gateway.crt and iscsi-gateway.key and placed in /etc/ceph on *each*
# gateway node. With the SSL files in place, you can use api_secure = true
# to switch to https mode.
# To support the api, the bear minimum settings are;
api_secure = false
# Additional API configuration options are as follows (defaults shown);
# api_user = admin
# api_password = admin
# api_port = 5000
# trusted_ip_list = IP,IP
# Refer to the ceph-iscsi-config/settings module for more options