forked from Qualys/cs_sensor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcssensor-dcos.json
More file actions
55 lines (55 loc) · 1.22 KB
/
cssensor-dcos.json
File metadata and controls
55 lines (55 loc) · 1.22 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
{
"id": "/qualys-container-sensor",
"args": ["--dcos-mode"],
"cpus": 1,
"mem": 128,
"disk": 0,
"instances": 1,
"allowPrivilegeEscalation": false,
"acceptedResourceRoles": [
"*"
],
"container": {
"type": "DOCKER",
"docker": {
"forcePullImage": true,
"image": "qualys/qcs-sensor:latest",
"parameters": [],
"privileged": false
},
"volumes": [
{
"containerPath": "/usr/local/qualys/qpa/data",
"hostPath": "/usr/local/qualys/sensor/data",
"mode": "RW"
},
{
"containerPath": "/var/run/docker.sock",
"hostPath": "/var/run/docker.sock",
"mode": "RW"
},
{
"containerPath": "/usr/local/qualys/qpa/data/conf/agent-data",
"hostPath": "/etc/qualys",
"mode": "RW"
},
{
"containerPath": "/etc/qualys/qpa/cert/custom-ca.crt",
"hostPath": "/root/cert/proxy-certificate.crt",
"mode": "RO"
}
]
},
"env": {
"ACTIVATIONID": "__activationId",
"CUSTOMERID": "__customerId",
"POD_URL": "",
"qualys_https_proxy": "<proxy FQDN or Ip address>:<port#>"
},
"portDefinitions": [
{
"port": 10000,
"protocol": "tcp"
}
]
}