forked from nanoandrew4/ngcplogs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.json
47 lines (46 loc) · 1.14 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
{
"description": "New GCP docker log driver",
"documentation": "https://github.com/nanoandrew4/ngcplogs/blob/main/README.md",
"entrypoint": ["/usr/bin/ngcplogs"],
"interface": {
"types": ["docker.logdriver/1.0"],
"socket": "ngcplogs.sock"
},
"network": {
"type": "host"
},
"mounts": [
{
"destination": "/host",
"type": "none",
"source": "/",
"options": ["rbind","ro"]
}
],
"env": [
{
"name": "log-level",
"description": "Set log level to output for plugin logs",
"value": "info",
"settable": ["value"]
},
{
"name": "credentials-file",
"description": "GCP credentials JSON file to use for authentication (if container is running outside of GCP)",
"value": "",
"settable": ["value"]
},
{
"name": "credentials-json",
"description": "GCP credentials JSON to use for authentication (if container is running outside of GCP)",
"value": "",
"settable": ["value"]
},
{
"name": "gcp-project",
"description": "Set the project ID to log to",
"value": "",
"settable": ["value"]
}
]
}