This repository has been archived by the owner on Apr 10, 2021. It is now read-only.
forked from awslabs/ecs-refarch-continuous-deployment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ecs-cluster.yaml
216 lines (199 loc) · 5.89 KB
/
ecs-cluster.yaml
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
Parameters:
InstanceType:
Type: String
Default: t2.micro
ClusterSize:
Type: Number
Default: 1
MaxClusterSize:
Type: Number
Default: 2
Subnets:
Type: List<AWS::EC2::Subnet::Id>
SourceSecurityGroup:
Type: AWS::EC2::SecurityGroup::Id
KeyName:
Type: String
VpcId:
Type: AWS::EC2::VPC::Id
Mappings:
AWSRegionToAMI:
us-east-1:
AMI: ami-275ffe31
us-east-2:
AMI: ami-c6b5efa3
us-west-1:
AMI: ami-1eda8d7e
us-west-2:
AMI: ami-a2ca61c2
eu-west-1:
AMI: ami-ba346ec9
eu-west-2:
AMI: ami-42c5cf26
eu-central-1:
AMI: ami-e012d48f
ap-northeast-1:
AMI: ami-08f7956f
ap-southeast-1:
AMI: ami-f4832f97
ap-southeast-2:
AMI: ami-774b7314
ca-central-1:
AMI: ami-be45f7da
Resources:
ECSRole:
Type: AWS::IAM::Role
Properties:
Path: /
RoleName: !Sub ecs-${AWS::StackName}
AssumeRolePolicyDocument: |
{
"Statement": [{
"Effect": "Allow",
"Principal": { "Service": [ "ec2.amazonaws.com" ]},
"Action": [ "sts:AssumeRole" ]
}]
}
ManagedPolicyArns:
- arn:aws:iam::aws:policy/service-role/AmazonEC2ContainerServiceforEC2Role
InstanceProfile:
Type: AWS::IAM::InstanceProfile
Properties:
Path: /
Roles:
- !Ref ECSRole
Cluster:
Type: AWS::ECS::Cluster
Properties:
ClusterName: !Ref AWS::StackName
AutoScalingGroup:
Type: AWS::AutoScaling::AutoScalingGroup
Properties:
VPCZoneIdentifier: !Ref Subnets
LaunchConfigurationName: !Ref LaunchConfiguration
MinSize: !Ref ClusterSize
MaxSize: !Ref MaxClusterSize
DesiredCapacity: !Ref ClusterSize
Tags:
- Key: Name
Value: !Sub ${AWS::StackName} - ECS Host
PropagateAtLaunch: true
CreationPolicy:
ResourceSignal:
Timeout: PT15M
UpdatePolicy:
AutoScalingRollingUpdate:
MinInstancesInService: 1
MaxBatchSize: 1
PauseTime: PT15M
WaitOnResourceSignals: true
LaunchConfiguration:
Type: AWS::AutoScaling::LaunchConfiguration
Metadata:
AWS::CloudFormation::Init:
config:
commands:
01_add_instance_to_cluster:
command: !Sub echo ECS_CLUSTER=${Cluster} > /etc/ecs/ecs.config
files:
"/etc/cfn/cfn-hup.conf":
mode: 000400
owner: root
group: root
content: !Sub |
[main]
stack=${AWS::StackId}
region=${AWS::Region}
"/etc/cfn/hooks.d/cfn-auto-reloader.conf":
content: !Sub |
[cfn-auto-reloader-hook]
triggers=post.update
path=Resources.ContainerInstances.Metadata.AWS::CloudFormation::Init
action=/opt/aws/bin/cfn-init -v --region ${AWS::Region} --stack ${AWS::StackName} --resource LaunchConfiguration
services:
sysvinit:
cfn-hup:
enabled: true
ensureRunning: true
files:
- /etc/cfn/cfn-hup.conf
- /etc/cfn/hooks.d/cfn-auto-reloader.conf
Properties:
ImageId: !FindInMap [ AWSRegionToAMI, !Ref "AWS::Region", AMI ]
InstanceType: !Ref InstanceType
IamInstanceProfile: !Ref InstanceProfile
KeyName: !Ref KeyName
SecurityGroups:
- !Ref SourceSecurityGroup
UserData:
"Fn::Base64": !Sub |
#!/bin/bash
yum install -y aws-cfn-bootstrap
/opt/aws/bin/cfn-init -v --region ${AWS::Region} --stack ${AWS::StackName} --resource LaunchConfiguration
/opt/aws/bin/cfn-signal -e $? --region ${AWS::Region} --stack ${AWS::StackName} --resource AutoScalingGroup
Service:
Type: AWS::ECS::Service
Properties:
Cluster: !Ref Cluster
DesiredCount: !Ref ClusterSize
TaskDefinition: !Ref TaskDefinition
TaskDefinition:
Type: AWS::ECS::TaskDefinition
Properties:
Family: !Sub ${AWS::StackName}-web-proxy
ContainerDefinitions:
- Name: NginxLetsEncrypt
Image: jrcs/letsencrypt-nginx-proxy-companion
MountPoints:
- SourceVolume: docker-sock
ContainerPath: /var/run/docker.sock
ReadOnly: true
- SourceVolume: nginx-certs
ContainerPath: /etc/nginx/certs
VolumesFrom:
- SourceContainer: NginxProxy
Essential: true
Memory: 128
- Name: NginxProxy
Image: jwilder/nginx-proxy
MountPoints:
- SourceVolume: docker-sock
ContainerPath: /tmp/docker.sock
ReadOnly: true
- SourceVolume: nginx-certs
ContainerPath: /etc/nginx/certs
ReadOnly: true
- SourceVolume: nginx-html
ContainerPath: /usr/share/nginx/html
- SourceVolume: nginx-vhosts
ContainerPath: /etc/nginx/vhost.d
- SourceVolume: nginx-conf
ContainerPath: /etc/nginx/conf.d
Essential: true
Memory: 128
PortMappings:
- HostPort: 443
ContainerPort: 443
Protocol: TCP
- HostPort: 80
ContainerPort: 80
Protocol: TCP
Volumes:
- Name: docker-sock
Host:
SourcePath: /var/run/docker.sock
- Name: nginx-certs
Host:
SourcePath: /opt/docker/nginx/certs
- Name: nginx-html
Host:
SourcePath: /opt/docker/nginx/html
- Name: nginx-vhosts
Host:
SourcePath: /opt/docker/nginx/vhosts
- Name: nginx-conf
Host:
SourcePath: /opt/docker/nginx/confd
Outputs:
ClusterName:
Value: !Ref Cluster