-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathhello-internal-nlb.jsonnet
47 lines (47 loc) · 1 KB
/
hello-internal-nlb.jsonnet
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
{
scheduler: {
type: 'ecs',
region: 'ap-northeast-1',
cluster: 'eagletmt',
desired_count: 2,
role: 'ecsServiceRole',
// health_check_grace_period_seconds: 0,
elb_v2: {
// NLB can not have
// * health check path
// * securit group
scheme: 'internal',
type: 'network',
// VPC id where the target group is located
vpc_id: 'vpc-WWWWWWWW',
listeners: [
{
port: 80,
protocol: 'TCP',
},
],
subnets: [
'subnet-XXXXXXXX',
'subnet-YYYYYYYY',
],
container_name: 'app',
container_port: 80,
// If you want enalbed cross zone load balancing, then specify attribute.
// load_balancer_attributes: {
// 'load_balancing.cross_zone.enabled': 'true',
// },
},
},
app: {
image: 'nginx',
memory: 128,
cpu: 256,
port_mappings: [
{
container_port: 80,
host_port: 0,
protocol: 'TCP',
},
],
},
}