forked from signalfx/signalfx-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
signalfx-agent-task.json
111 lines (111 loc) · 3.23 KB
/
signalfx-agent-task.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
109
110
111
{
"executionRoleArn": null,
"containerDefinitions": [
{
"dnsSearchDomains": null,
"logConfiguration": null,
"entryPoint": [
"bash",
"-c"
],
"portMappings": [],
"command": [
"curl --fail $CONFIG_URL > /etc/signalfx/agent.yaml && exec /bin/signalfx-agent"
],
"linuxParameters": null,
"cpu": 0,
"environment": [
{
"name": "ACCESS_TOKEN",
"value": "MY_ACCESS_TOKEN"
},
{
"name": "INGEST_URL",
"value": "MY_INGEST_URL"
},
{
"name": "API_URL",
"value": "MY_API_URL"
},
{
"name": "TRACE_ENDPOINT_URL",
"value": "MY_TRACE_ENDPOINT_URL"
},
{
"name": "CONFIG_URL",
"value": "https://raw.githubusercontent.com/signalfx/signalfx-agent/v5.17.1/deployments/ecs/agent.yaml"
}
],
"ulimits": null,
"dnsServers": null,
"mountPoints": [
{
"readOnly": true,
"containerPath": "/hostfs",
"sourceVolume": "hostfs"
},
{
"readOnly": true,
"containerPath": "/var/run/docker.sock",
"sourceVolume": "docker-socket"
},
{
"readOnly": true,
"containerPath": "/etc/passwd",
"sourceVolume": "etc-passwd"
}
],
"workingDirectory": null,
"dockerSecurityOptions": null,
"memory": null,
"memoryReservation": null,
"volumesFrom": [],
"image": "quay.io/signalfx/signalfx-agent:5.17.1",
"disableNetworking": null,
"healthCheck": null,
"essential": true,
"links": null,
"hostname": null,
"extraHosts": null,
"user": null,
"readonlyRootFilesystem": null,
"dockerLabels": {
"app": "signalfx-agent"
},
"privileged": null,
"name": "signalfx-agent"
}
],
"memory": "200",
"taskRoleArn": null,
"family": "signalfx-agent",
"requiresCompatibilities": [
"EC2"
],
"networkMode": "host",
"cpu": null,
"volumes": [
{
"name": "hostfs",
"host": {
"sourcePath": "/"
},
"dockerVolumeConfiguration": null
},
{
"name": "docker-socket",
"host": {
"sourcePath": "/var/run/docker.sock"
},
"dockerVolumeConfiguration": null
},
{
"name": "etc-passwd",
"host": {
"sourcePath": "/etc/passwd"
},
"dockerVolumeConfiguration": null
}
],
"placementConstraints": []
}