-
Notifications
You must be signed in to change notification settings - Fork 19
/
config.json
108 lines (108 loc) · 2.6 KB
/
config.json
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"description": "Blockbridge Volume Plugin",
"documentation": "https://github.com/blockbridge/blockbridge-docker-volume",
"workdir": "/usr/lib/blockbridge-docker-volume",
"entrypoint": ["./volume_driver.sh"],
"interface": {
"types": ["docker.volumedriver/1.0"],
"socket": "blockbridge.sock"
},
"network": {
"type": "host"
},
"args": null,
"linux": {
"capabilities": ["CAP_IPC_LOCK", "CAP_IPC_OWNER", "CAP_NET_ADMIN", "CAP_SYS_ADMIN", "CAP_MKNOD", "CAP_SYS_MODULE"],
"allowAllDevices": true,
"devices": null
},
"PropagatedMount": "/bb/mnt",
"mounts": [
{
"name": "/dev",
"description": "host devices",
"source": "/dev",
"destination": "/dev",
"type": "bind",
"options": ["shared", "rbind"]
},
{
"name": "/sys",
"description": "host /sys",
"source": "/sys",
"destination": "/sys",
"type": "bind",
"options": ["rshared", "rbind"]
},
{
"name": "/run",
"description": "run directory for docker API access",
"source": "/var/run",
"destination": "/docker.run",
"type": "bind",
"options": ["shared", "bind"]
},
{
"name": "kernel modules",
"description": "kernel modules",
"source": "/lib/modules",
"destination": "/lib/modules",
"type": "bind",
"options": ["shared", "rbind"]
}
],
"env": [
{
"name": "DOCKER_URL",
"description": "docker socket url",
"value": "unix:///docker.run/docker.sock"
},
{
"name": "BLOCKBRIDGE_ERROR_FORMAT",
"description": "blockbridge cli error format",
"value": "machine"
},
{
"name": "BLOCKBRIDGE_MNT_LOCAL",
"description": "blockbridge mnt setting",
"value": "1"
},
{
"name": "BLOCKBRIDGE_NET_LOCAL",
"description": "blockbridge net setting",
"value": "1"
},
{
"name": "BLOCKBRIDGE_LOGGER_TIMESTAMP",
"description": "prefix log messages with a timestamp",
"value": "0",
"Settable": [
"value"
]
},
{
"name": "BLOCKBRIDGE_GLOBAL_TOKEN",
"description": "api key specified is global token; set to 1 to SU to users with one token",
"value": "0",
"Settable": [
"value"
]
},
{
"name": "BLOCKBRIDGE_API_HOST",
"description": "blockbridge api host (controlplane)",
"value": "unset",
"Settable": [
"value"
]
},
{
"name": "BLOCKBRIDGE_API_KEY",
"description": "blockbridge api key",
"value": "unset",
"Settable": [
"value"
]
}
]
}