-
Notifications
You must be signed in to change notification settings - Fork 15
/
ab-testing-pipeline.yml
412 lines (411 loc) · 11.7 KB
/
ab-testing-pipeline.yml
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
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
Parameters:
SageMakerProjectName:
Type: String
Description: The name of the SageMaker project.
MaxLength: 32
MinLength: 1
SageMakerProjectId:
Type: String
Description: Service generated Id of the project.
MaxLength: 16
MinLength: 1
StageName:
Type: String
Default: dev
Description: The stage name.
MaxLength: 8
MinLength: 1
CodeCommitSeedBucket:
Type: String
Description: The optional s3 seed bucket
MinLength: 1
CodeCommitSeedKey:
Type: String
Description: The optional s3 seed key
MinLength: 1
Resources:
CodeRepo:
Type: AWS::CodeCommit::Repository
Properties:
RepositoryName:
Fn::Join:
- ""
- - sagemaker-
- Ref: SageMakerProjectName
- -repo
Code:
BranchName: main
S3:
Bucket:
Ref: CodeCommitSeedBucket
Key:
Ref: CodeCommitSeedKey
RepositoryDescription: Amazon SageMaker A/B testing pipeline
Tags:
- Key: sagemaker:deployment-stage
Value:
Ref: StageName
- Key: sagemaker:project-id
Value:
Ref: SageMakerProjectId
- Key: sagemaker:project-name
Value:
Ref: SageMakerProjectName
CdkBuild455F642E:
Type: AWS::CodeBuild::Project
Properties:
Artifacts:
Type: CODEPIPELINE
Environment:
ComputeType: BUILD_GENERAL1_SMALL
EnvironmentVariables:
- Name: SAGEMAKER_PROJECT_NAME
Type: PLAINTEXT
Value:
Ref: SageMakerProjectName
- Name: SAGEMAKER_PROJECT_ID
Type: PLAINTEXT
Value:
Ref: SageMakerProjectId
- Name: STAGE_NAME
Type: PLAINTEXT
Value:
Ref: StageName
Image: aws/codebuild/standard:1.0
ImagePullCredentialsType: CODEBUILD
PrivilegedMode: false
Type: LINUX_CONTAINER
ServiceRole:
Fn::Join:
- ""
- - "arn:"
- Ref: AWS::Partition
- ":iam::"
- Ref: AWS::AccountId
- :role/service-role/AmazonSageMakerServiceCatalogProductsUseRole
Source:
BuildSpec: >-
{
"version": "0.2",
"phases": {
"install": {
"commands": [
"npm install aws-cdk",
"npm update",
"python -m pip install -r requirements.txt"
]
},
"build": {
"commands": [
"npx cdk synth -o dist --path-metadata false"
]
}
},
"artifacts": {
"base-directory": "dist",
"files": [
"*.template.json"
]
},
"environment": {
"buildImage": {
"type": "LINUX_CONTAINER",
"defaultComputeType": "BUILD_GENERAL1_SMALL",
"imageId": "aws/codebuild/amazonlinux2-x86_64-standard:3.0",
"imagePullPrincipalType": "CODEBUILD"
}
}
}
Type: CODEPIPELINE
EncryptionKey: alias/aws/s3
Name:
Fn::Join:
- ""
- - sagemaker-
- Ref: SageMakerProjectName
- -cdk-
- Ref: StageName
S3Artifact80610462:
Type: AWS::S3::Bucket
Properties:
BucketName:
Fn::Join:
- ""
- - sagemaker-
- Ref: SageMakerProjectId
- -artifact-
- Ref: StageName
- "-"
- Ref: AWS::Region
UpdateReplacePolicy: Delete
DeletionPolicy: Delete
PipelineC660917D:
Type: AWS::CodePipeline::Pipeline
Properties:
RoleArn:
Fn::Join:
- ""
- - "arn:"
- Ref: AWS::Partition
- ":iam::"
- Ref: AWS::AccountId
- :role/service-role/AmazonSageMakerServiceCatalogProductsUseRole
Stages:
- Actions:
- ActionTypeId:
Category: Source
Owner: AWS
Provider: CodeCommit
Version: "1"
Configuration:
RepositoryName:
Fn::GetAtt:
- CodeRepo
- Name
BranchName: main
PollForSourceChanges: false
Name: CodeCommit_Source
OutputArtifacts:
- Name: Artifact_Source_CodeCommit_Source
RunOrder: 1
Name: Source
- Actions:
- ActionTypeId:
Category: Build
Owner: AWS
Provider: CodeBuild
Version: "1"
Configuration:
ProjectName:
Ref: CdkBuild455F642E
InputArtifacts:
- Name: Artifact_Source_CodeCommit_Source
Name: CDK_Build
OutputArtifacts:
- Name: Artifact_Build_CDK_Build
RunOrder: 1
Name: Build
- Actions:
- ActionTypeId:
Category: Deploy
Owner: AWS
Provider: CloudFormation
Version: "1"
Configuration:
StackName:
Fn::Join:
- ""
- - sagemaker-
- Ref: SageMakerProjectName
- -deploy-
- Ref: StageName
RoleArn:
Fn::Join:
- ""
- - "arn:"
- Ref: AWS::Partition
- ":iam::"
- Ref: AWS::AccountId
- :role/service-role/AmazonSageMakerServiceCatalogProductsUseRole
ActionMode: REPLACE_ON_FAILURE
TemplatePath: Artifact_Build_CDK_Build::ab-testing-sagemaker.template.json
InputArtifacts:
- Name: Artifact_Build_CDK_Build
Name: SageMaker_CFN_Deploy
RunOrder: 1
Name: Deploy
ArtifactStore:
Location:
Ref: S3Artifact80610462
Type: S3
Name:
Fn::Join:
- ""
- - sagemaker-
- Ref: SageMakerProjectName
- -pipeline-
- Ref: StageName
DeployRule0F8E909D:
Type: AWS::Events::Rule
Properties:
Description: Rule to trigger a deployment when SageMaker Model registry is updated with a new model package.
EventPattern:
detail:
ModelPackageGroupName:
- Fn::Join:
- ""
- - Ref: SageMakerProjectName
- -champion
- Fn::Join:
- ""
- - Ref: SageMakerProjectName
- -challenger
detail-type:
- SageMaker Model Package State Change
source:
- aws.sagemaker
Name:
Fn::Join:
- ""
- - sagemaker-
- Ref: SageMakerProjectName
- -model-
- Ref: StageName
State: ENABLED
Targets:
- Arn:
Fn::Join:
- ""
- - "arn:"
- Ref: AWS::Partition
- ":codepipeline:"
- Ref: AWS::Region
- ":"
- Ref: AWS::AccountId
- ":"
- Ref: PipelineC660917D
Id: Target0
RoleArn:
Fn::Join:
- ""
- - "arn:"
- Ref: AWS::Partition
- ":iam::"
- Ref: AWS::AccountId
- :role/service-role/AmazonSageMakerServiceCatalogProductsUseRole
CodeRule663E3DC0:
Type: AWS::Events::Rule
Properties:
Description: Rule to trigger a deployment when deployment configured is updated in CodeCommit.
EventPattern:
detail:
event:
- referenceCreated
- referenceUpdated
referenceType:
- branch
referenceName:
- main
detail-type:
- CodeCommit Repository State Change
resources:
- Fn::Join:
- ""
- - "arn:"
- Ref: AWS::Partition
- ":codecommit:"
- Ref: AWS::Region
- ":"
- Ref: AWS::AccountId
- ":"
- Fn::GetAtt:
- CodeRepo
- Name
source:
- aws.codecommit
Name:
Fn::Join:
- ""
- - sagemaker-
- Ref: SageMakerProjectName
- -code-
- Ref: StageName
State: ENABLED
Targets:
- Arn:
Fn::Join:
- ""
- - "arn:"
- Ref: AWS::Partition
- ":codepipeline:"
- Ref: AWS::Region
- ":"
- Ref: AWS::AccountId
- ":"
- Ref: PipelineC660917D
Id: Target0
RoleArn:
Fn::Join:
- ""
- - "arn:"
- Ref: AWS::Partition
- ":iam::"
- Ref: AWS::AccountId
- :role/service-role/AmazonSageMakerServiceCatalogProductsUseRole
CDKMetadata:
Type: AWS::CDK::Metadata
Properties:
Analytics: v2:deflate64:H4sIAAAAAAAAE0WN0YrCMBBFv8X3OCIVln0T/YFSvyBOR3ZskynJRCkh/742Lfh0L3M5Z47we4Lj7mzfcY/9cMgogSDf1OJgrg/f2mAdKQXTUZQUkMxVfNSQUJf9e334z9CzsvhiFl1m6yC3MjLOVVVbMSg9oTjHClUwSWSVMNfhnnjsPxRPNLKnNsiT1k9bLSY2kC8JB6rnta3WaaO+fAW3Xgy9yGuE3KWxLkuWUkw765/4QwM/0OyekXkfkld2BN2a//2ekvEmAQAA
Condition: CDKMetadataAvailable
Conditions:
CDKMetadataAvailable:
Fn::Or:
- Fn::Or:
- Fn::Equals:
- Ref: AWS::Region
- af-south-1
- Fn::Equals:
- Ref: AWS::Region
- ap-east-1
- Fn::Equals:
- Ref: AWS::Region
- ap-northeast-1
- Fn::Equals:
- Ref: AWS::Region
- ap-northeast-2
- Fn::Equals:
- Ref: AWS::Region
- ap-south-1
- Fn::Equals:
- Ref: AWS::Region
- ap-southeast-1
- Fn::Equals:
- Ref: AWS::Region
- ap-southeast-2
- Fn::Equals:
- Ref: AWS::Region
- ca-central-1
- Fn::Equals:
- Ref: AWS::Region
- cn-north-1
- Fn::Equals:
- Ref: AWS::Region
- cn-northwest-1
- Fn::Or:
- Fn::Equals:
- Ref: AWS::Region
- eu-central-1
- Fn::Equals:
- Ref: AWS::Region
- eu-north-1
- Fn::Equals:
- Ref: AWS::Region
- eu-south-1
- Fn::Equals:
- Ref: AWS::Region
- eu-west-1
- Fn::Equals:
- Ref: AWS::Region
- eu-west-2
- Fn::Equals:
- Ref: AWS::Region
- eu-west-3
- Fn::Equals:
- Ref: AWS::Region
- me-south-1
- Fn::Equals:
- Ref: AWS::Region
- sa-east-1
- Fn::Equals:
- Ref: AWS::Region
- us-east-1
- Fn::Equals:
- Ref: AWS::Region
- us-east-2
- Fn::Or:
- Fn::Equals:
- Ref: AWS::Region
- us-west-1
- Fn::Equals:
- Ref: AWS::Region
- us-west-2