|
1 | 1 | [
|
2 | 2 | {
|
3 |
| - "name": "waggledance", |
4 |
| - "image": "${docker_image}:${docker_version}", |
5 |
| - ${docker_auth} |
6 |
| - "essential": true, |
7 |
| - "logConfiguration": { |
8 |
| - "logDriver": "awslogs", |
9 |
| - "options": { |
10 |
| - "awslogs-group": "${loggroup}", |
11 |
| - "awslogs-region": "${region}", |
12 |
| - "awslogs-stream-prefix": "/" |
13 |
| - } |
14 |
| - }, |
15 |
| - "portMappings": [ |
16 |
| - { |
17 |
| - "containerPort": 48869, |
18 |
| - "hostPort": 48869 |
19 |
| - } |
20 |
| - ], |
21 |
| - "environment":[ |
22 |
| - { |
23 |
| - "name": "HEAPSIZE", |
24 |
| - "value": "${heapsize}" |
25 |
| - }, |
26 |
| - { |
27 |
| - "name": "LOGLEVEL", |
28 |
| - "value": "${loglevel}" |
29 |
| - }, |
30 |
| - { |
31 |
| - "name": "SERVER_YAML", |
32 |
| - "value": "${server_yaml}" |
33 |
| - }, |
34 |
| - { |
35 |
| - "name": "FEDERATION_YAML", |
36 |
| - "value": "${federation_yaml}" |
37 |
| - }, |
38 |
| - { |
39 |
| - "name": "HIVE_SITE_XML", |
40 |
| - "value": "${hive_site_xml}" |
41 |
| - }, |
42 |
| - { |
43 |
| - "name": "BASTION_SSH_KEY_ARN", |
44 |
| - "value": "${bastion_ssh_key_arn}" |
45 |
| - }, |
46 |
| - { |
47 |
| - "name": "LOG4J_FORMAT_MSG_NO_LOOKUPS", |
48 |
| - "value": "true" |
49 |
| - } |
50 |
| - ], |
51 |
| - "healthCheck": { |
52 |
| - "command": ["CMD-SHELL", "curl -f http://localhost:18000/actuator/health || exit 1"], |
53 |
| - "interval": 5, |
54 |
| - "retries": 3, |
55 |
| - "startPeriod": 60, |
56 |
| - "timeout": 5 |
57 |
| - } |
| 3 | + "name": "waggledance", |
| 4 | + "image": "${docker_image}:${docker_version}", |
| 5 | + ${docker_auth} |
| 6 | + "essential": true, |
| 7 | + "logConfiguration": { |
| 8 | + "logDriver": "awslogs", |
| 9 | + "options": { |
| 10 | + "awslogs-group": "${loggroup}", |
| 11 | + "awslogs-region": "${region}", |
| 12 | + "awslogs-stream-prefix": "/" |
| 13 | + } |
| 14 | + }, |
| 15 | + "portMappings": [ |
| 16 | + { |
| 17 | + "containerPort": 48869, |
| 18 | + "hostPort": 48869 |
| 19 | + } |
| 20 | + ], |
| 21 | + "environment":[ |
| 22 | + { |
| 23 | + "name": "HEAPSIZE", |
| 24 | + "value": "${heapsize}" |
| 25 | + }, |
| 26 | + { |
| 27 | + "name": "LOGLEVEL", |
| 28 | + "value": "${loglevel}" |
| 29 | + }, |
| 30 | + { |
| 31 | + "name": "SERVER_YAML", |
| 32 | + "value": "${server_yaml}" |
| 33 | + }, |
| 34 | + { |
| 35 | + "name": "FEDERATION_YAML", |
| 36 | + "value": "${federation_yaml}" |
| 37 | + }, |
| 38 | + { |
| 39 | + "name": "HIVE_SITE_XML", |
| 40 | + "value": "${hive_site_xml}" |
| 41 | + }, |
| 42 | + { |
| 43 | + "name": "BASTION_SSH_KEY_ARN", |
| 44 | + "value": "${bastion_ssh_key_arn}" |
| 45 | + }, |
| 46 | + { |
| 47 | + "name": "LOG4J_FORMAT_MSG_NO_LOOKUPS", |
| 48 | + "value": "true" |
| 49 | + } |
| 50 | + ], |
| 51 | + "healthCheck": { |
| 52 | + "command": ["CMD-SHELL", "curl -f http://localhost:18000/actuator/health || exit 1"], |
| 53 | + "interval": 5, |
| 54 | + "retries": 3, |
| 55 | + "startPeriod": 60, |
| 56 | + "timeout": 5 |
| 57 | + }, |
| 58 | + "ulimits": [ |
| 59 | + { |
| 60 | + "name": "nofile", |
| 61 | + "softLimit": 65536, |
| 62 | + "hardLimit": 65536 |
| 63 | + }, |
| 64 | + { |
| 65 | + "name": "nproc", |
| 66 | + "softLimit": 65536, |
| 67 | + "hardLimit": 65536 |
| 68 | + } |
| 69 | + ] |
58 | 70 | }
|
59 | 71 | ]
|
0 commit comments