-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathhello-service-discovery.jsonnet
49 lines (48 loc) · 1.03 KB
/
hello-service-discovery.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
48
49
local fileProvider = std.native('provide.file');
local provide(name) = fileProvider(std.toString({ path: 'hello.env' }), name);
{
scheduler: {
type: 'ecs',
region: 'ap-northeast-1',
cluster: 'eagletmt',
desired_count: 2,
role: 'ecsServiceRole',
service_discovery: [
{
container_name: 'app',
container_port: 80,
service: {
name: 'hello-service-discovery',
namespace_id: 'ns-XXXXXXXXXXXXXXXX',
dns_config: {
dns_records: [
{
type: 'SRV',
ttl: 60,
},
],
},
health_check_custom_config: {
failure_threshold: 1,
},
},
},
],
},
app: {
image: 'ryotarai/hello-sinatra',
memory: 128,
cpu: 256,
env: {
PORT: '3000',
MESSAGE: std.format('%s-san', provide('username')),
},
port_mappings: [
{
container_port: 3000,
host_port: 0,
protocol: 'tcp',
},
],
},
}