-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathconfig.json
More file actions
58 lines (58 loc) · 1.31 KB
/
config.json
File metadata and controls
58 lines (58 loc) · 1.31 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"description": "Volume plugin for mounting CephFS filesystems",
"documentation": "https://docs.docker.com/engine/extend/plugins/",
"entrypoint": ["docker-plugin-cephfs"],
"propagatedMount": "/var/lib/docker-volumes",
"network": {
"type": "host"
},
"interface" : {
"types": ["docker.volumedriver/1.0"],
"socket": "cephfs.sock"
},
"linux": {
"capabilities": ["CAP_SYS_ADMIN"]
},
"env": [
{
"Name": "CLIENT_NAME",
"Description": "Default client name to connect to the ceph cluster with when none specified",
"Settable": ["value"],
"Value": "admin"
},
{
"Name": "CLUSTER_NAME",
"Description": "Default cluster name to connect to",
"Settable": ["value"],
"Value": "ceph"
},
{
"Name": "SERVERS",
"Description": "Comma-delimited list of ceph monitors to connect to",
"Settable": ["value"],
"Value": "localhost"
},
{
"Name": "DEBUG_MODE",
"Description": "Enable verbose logging of operations",
"Settable": ["value"],
"Value": "0"
}
],
"mounts": [
{
"name": "Ceph config",
"description": "Mount containing Ceph configuration",
"source": "/etc/ceph",
"destination": "/etc/ceph",
"type": "bind",
"options": ["rbind"]
},
{
"source": "/lib/modules",
"destination": "/lib/modules",
"type": "bind",
"options": ["rbind"]
}
]
}