-
Notifications
You must be signed in to change notification settings - Fork 1
/
codepipeline.yaml
292 lines (290 loc) · 9.26 KB
/
codepipeline.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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
AWSTemplateFormatVersion: 2010-09-09
Description: Deploy the oom.generator on a ECS Cluster
Parameters:
ClusterName:
Type: String
Description: Name of the ECS Cluster
ClusterSecurityGroup:
Type: AWS::EC2::SecurityGroup::Id
Description: SecurityGroupId of the ECS instances
Vpc:
Type: AWS::EC2::VPC::Id
Description: VPC of the ECS Cluster
FirstAlbSubnet:
Type: AWS::EC2::Subnet::Id
Description: First subnet for the ALB
SecondAlbSubnet:
Type: AWS::EC2::Subnet::Id
Description: Second subnet for the ALB
ProjectOwner:
Type: String
Default: StephanPraetsch
Description: Github project owner
ProjectName:
Type: String
Default: oom.generator
Description: Github project name
BranchName:
Type: String
Default: master
Description: Github branch name
OAuthToken:
Type: String
NoEcho: True
Description: Github OAuthToken
StackName:
Type: String
Default: oom-generator
Description: Cloudformation stack name
ECRRepositoryName:
Type: String
Default: oom.generator
Description: Name of the ECR repository
CreateEcrRepository:
Type: String
AllowedValues: [yes, no]
Default: yes
Description: Create ECR repository?
S3BucketName:
Type: String
Description: Name of the S3 bucket for the CodePipeline
CreateCodePipelineS3Bucket:
Type: String
AllowedValues: [yes, no]
Default: yes
Description: Create S3 bucket for CodePipeline?
Conditions:
CreateECR: !Equals [!Ref CreateEcrRepository, yes]
CreateS3: !Equals [!Ref CreateCodePipelineS3Bucket, yes]
Resources:
EcrRepo:
Type: AWS::ECR::Repository
Condition: CreateECR
Properties:
RepositoryName: !Ref ECRRepositoryName
RepositoryPolicyText:
Version: 2012-10-17
Statement:
- Sid: PullAccess
Effect: Allow
Principal:
AWS:
- !Sub arn:aws:iam::${AWS::AccountId}:root
Action:
- ecr:GetDownloadUrlForLayer
- ecr:BatchGetImage
- ecr:BatchCheckLayerAvailability
- Sid: PushAccess
Effect: Allow
Principal:
AWS:
- !GetAtt CodeBuildServiceRole.Arn
Action:
- ecr:PutImage
- ecr:InitiateLayerUpload
- ecr:UploadLayerPart
- ecr:CompleteLayerUpload
CodePipelineS3Bucket:
Type: AWS::S3::Bucket
Condition: CreateS3
Properties:
BucketName: !Ref S3BucketName
CodePipeline:
Type: AWS::CodePipeline::Pipeline
Properties:
ArtifactStore:
Type: S3
Location: !Ref S3BucketName
Name: !Sub ${ProjectName}-${BranchName}
RoleArn: !GetAtt CodePipelineRole.Arn
Stages:
- Name: !Ref ProjectName
Actions:
- Name: GithubProject
ActionTypeId:
Category: Source
Owner: ThirdParty
Provider: GitHub
Version: 1
Configuration:
Owner: !Ref ProjectOwner
Repo: !Ref ProjectName
Branch: !Ref BranchName
OAuthToken: !Ref OAuthToken
OutputArtifacts:
- Name: source
RunOrder: 1
- Name: Build
Actions:
- Name: DockerMaven
ActionTypeId:
Category: Build
Owner: AWS
Version: 1
Provider: CodeBuild
Configuration:
ProjectName: !Ref CodeBuildDockerMaven
InputArtifacts:
- Name: source
OutputArtifacts:
- Name: docker-and-template
RunOrder: 1
- Name: Deploy
Actions:
- Name: !Ref ProjectName
ActionTypeId:
Category: Deploy
Owner: AWS
Provider: CloudFormation
Version: 1
InputArtifacts:
- Name: docker-and-template
Configuration:
ActionMode: CREATE_UPDATE
Capabilities: CAPABILITY_NAMED_IAM
ParameterOverrides: !Sub |
{
"ClusterName": "${ClusterName}",
"ClusterSecurityGroup": "${ClusterSecurityGroup}",
"Vpc": "${Vpc}",
"FirstAlbSubnet": "${FirstAlbSubnet}",
"SecondAlbSubnet": "${SecondAlbSubnet}",
"Image": {"Fn::GetParam": ["docker-and-template", "target/image_info.json", "image"]}
}
RoleArn: !ImportValue CFRoleArn
StackName: !Ref StackName
TemplatePath: docker-and-template::ecs.yaml
TemplateConfiguration: docker-and-template::ecs.config
RunOrder: 1
CodeBuildDockerMaven:
Type: AWS::CodeBuild::Project
Properties:
Artifacts:
Type: CODEPIPELINE
Source:
Type: CODEPIPELINE
BuildSpec: |
version: 0.2
phases:
install:
commands:
- apt-get update -y
- apt-get install -y software-properties-common
- add-apt-repository ppa:openjdk-r/ppa
- apt-get update -y
- apt-get install -y openjdk-8-jdk
- apt-get install -y maven
pre_build:
commands:
- eval $(aws ecr get-login --region $AWS_DEFAULT_REGION | sed -e 's/-e none//g')
build:
commands:
- mvn deploy -DawsAccountId=$AWS_ACCOUNT_ID -DawsRegion=$AWS_DEFAULT_REGION
artifacts:
files:
- ecs.yaml
- target/image_info.json
- ecs.config
Environment:
ComputeType: BUILD_GENERAL1_MEDIUM
Image: aws/codebuild/docker:17.09.0
Type: LINUX_CONTAINER
EnvironmentVariables:
- Name: AWS_DEFAULT_REGION
Value: !Ref AWS::Region
- Name: AWS_ACCOUNT_ID
Value: !Ref AWS::AccountId
Name: maven-docker-deploy
ServiceRole: !Ref CodeBuildServiceRole
CodePipelineRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: 2012-10-17
Statement:
- Action:
- sts:AssumeRole
Effect: Allow
Principal:
Service:
- codepipeline.amazonaws.com
Path: /
Policies:
- PolicyName: CodeBuildCloudFormationAndPassRole
PolicyDocument:
Version: 2012-10-17
Statement:
- Sid: generalPermissions
Action:
- codebuild:StartBuild
- codebuild:BatchGetBuilds
- iam:PassRole
Effect: Allow
Resource: '*'
- Sid: cfStackPermissions
Action:
- cloudformation:DescribeStacks
- cloudformation:CreateStack
- cloudformation:UpdateStack
Effect: Allow
Resource:
- !Sub arn:aws:cloudformation:${AWS::Region}:${AWS::AccountId}:stack/${StackName}/*
- Sid: s3Permissions
Action:
- s3:GetBucketVersioning
- s3:ListBucketVersions
- s3:GetObject
- s3:GetObjectVersion
- s3:PutObject
Effect: Allow
Resource:
- !Sub arn:aws:s3:::${S3BucketName}
- !Sub arn:aws:s3:::${S3BucketName}/*
CodeBuildServiceRole:
Type: AWS::IAM::Role
Properties:
Path: /
AssumeRolePolicyDocument:
Statement:
- Effect: Allow
Principal:
Service:
- codebuild.amazonaws.com
Action:
- sts:AssumeRole
Policies:
- PolicyName: EcrAndLogs
PolicyDocument:
Version: 2012-10-17
Statement:
- Sid: generalPermissions
Action:
- logs:CreateLogGroup
- logs:CreateLogStream
- logs:PutLogEvents
- ecr:GetAuthorizationToken
Effect: Allow
Resource: '*'
- Sid: ecrArtifactImageRepositoryPushPermissions
Action:
- ecr:GetDownloadUrlForLayer
- ecr:BatchGetImage
- ecr:BatchCheckLayerAvailability
- ecr:PutImage
- ecr:InitiateLayerUpload
- ecr:UploadLayerPart
- ecr:CompleteLayerUpload
Effect: Allow
Resource:
- !Sub arn:aws:ecr:${AWS::Region}:${AWS::AccountId}:repository/${ECRRepositoryName}
- Sid: s3Permissions
Action:
- s3:GetBucketVersioning
- s3:ListBucketVersions
- s3:GetObject
- s3:GetObjectVersion
- s3:PutObject
Effect: Allow
Resource:
- !Sub arn:aws:s3:::${S3BucketName}
- !Sub arn:aws:s3:::${S3BucketName}/*