-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjob.go
393 lines (305 loc) · 9.4 KB
/
job.go
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
package main
import (
"archive/zip"
"bytes"
"context"
"encoding/json"
"fmt"
"io"
"io/ioutil"
"os"
"path"
"path/filepath"
"sort"
"strings"
"github.com/bradfitz/slice"
log "github.com/sirupsen/logrus"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/credentials"
"github.com/aws/aws-sdk-go/aws/session"
"github.com/aws/aws-sdk-go/service/codepipeline"
"github.com/aws/aws-sdk-go/service/codepipeline/codepipelineiface"
"github.com/aws/aws-sdk-go/service/ecs"
"github.com/aws/aws-sdk-go/service/s3"
"github.com/eawsy/aws-lambda-go-event/service/lambda/runtime/event/codepipelineevt"
event "github.com/eawsy/aws-lambda-go-event/service/lambda/runtime/event/codepipelineevt"
)
const (
tmpFolder = "/tmp"
svcDefinition = "imagedefinitions.json"
)
// Deploy contains all the functionality to deploy services to ECS clusters
type Deploy struct {
ECSCluster string
Job *codepipelineevt.Job
pipe codepipelineiface.CodePipelineAPI
session *session.Session
s3 *s3.S3
ecs *ecs.ECS
ctx context.Context
Services Services
}
// Service contains a service update
type Service struct {
ServiceName string `json:"ServiceName"`
ImageDefinitions []ImageDefinition `json:"ImageDefinitions"`
}
// ImageDefinition is the specifiction of an image to be updated
type ImageDefinition struct {
Name string `json:"name"`
ImageURI string `json:"imageUri"`
}
// Services contains other services subject to be updates
type Services []*Service
// NewDeploy returns a new deployment structure
func NewDeploy(ctx context.Context, job *event.Job) (*Deploy, error) {
var err error
sess := session.New()
deploy := new(Deploy)
deploy.Job = job
deploy.session = sess
deploy.ctx = ctx
s3AccessKeyID := job.Data.ArtifactCredentials.AccessKeyID
s3SecretAccessKey := job.Data.ArtifactCredentials.SecretAccessKey
s3SessionToken := job.Data.ArtifactCredentials.SessionToken
deploy.pipe = codepipeline.New(sess)
deploy.s3 = s3.New(session.Must(session.NewSession(&aws.Config{
Credentials: credentials.NewStaticCredentials(s3AccessKeyID, s3SecretAccessKey, s3SessionToken),
})))
deploy.ecs = ecs.New(sess)
svcs, err := deploy.getServiceDefinition()
if err != nil {
return nil, err
}
slice.Sort(svcs, func(i, j int) bool {
return svcs[i].ServiceName < svcs[j].ServiceName
})
deploy.Services = svcs
return deploy, err
}
// NewFailure returns a new pipeline failure of the given err
func NewFailure(err error) *codepipeline.FailureDetails {
return &codepipeline.FailureDetails{
Message: aws.String(err.Error()),
Type: aws.String(codepipeline.FailureTypeJobFailed),
}
}
// NewExecDetails return new pipeline execution details
func NewExecDetails() *codepipeline.ExecutionDetails {
return &codepipeline.ExecutionDetails{
// should do more
}
}
func (d *Deploy) updateServices() error {
var err error
svcs, err := d.describeServices()
if err != nil {
return err
}
for _, svc := range svcs {
pos := sort.Search(len(d.Services), func(i int) bool { return aws.StringValue(svc.ServiceName) <= d.Services[i].ServiceName })
if len(d.Services) == pos {
continue
}
imageDefinitions := d.Services[pos].ImageDefinitions
task, err := d.describeTaskDefinition(svc.TaskDefinition)
if err != nil {
return err
}
for _, imageDefinition := range imageDefinitions {
pos := sort.Search(len(task.ContainerDefinitions), func(i int) bool { return imageDefinition.Name <= aws.StringValue(task.ContainerDefinitions[i].Name) })
if len(task.ContainerDefinitions) == pos {
return fmt.Errorf("could not find task %v", imageDefinition.Name)
}
task.ContainerDefinitions[pos].SetImage(imageDefinition.ImageURI)
}
newTask, err := d.registerTaskDefinition(task)
if err != nil {
return err
}
input := &ecs.UpdateServiceInput{
Cluster: svc.ClusterArn,
TaskDefinition: newTask.TaskDefinitionArn,
DeploymentConfiguration: svc.DeploymentConfiguration,
DesiredCount: svc.DesiredCount,
HealthCheckGracePeriodSeconds: svc.HealthCheckGracePeriodSeconds,
NetworkConfiguration: svc.NetworkConfiguration,
Service: svc.ServiceName,
// NewDeployment: aws.Bool(true),
}
_, err = d.ecs.UpdateServiceWithContext(d.ctx, input)
if err != nil {
return err
}
}
return err
}
func (d *Deploy) getServiceDefinition() (Services, error) {
var err error
var svcs Services
tmpDir, err := ioutil.TempDir("/tmp", "ecs-deploy")
if err != nil {
return nil, err
}
defer os.RemoveAll(tmpDir)
files, err := downloadArtifacts(d.s3, d.Job.Data.InputArtifacts, tmpDir)
if err != nil {
return nil, err
}
sort.Strings(files)
pos := sort.Search(len(files), func(i int) bool { return strings.Contains(files[i], svcDefinition) })
if pos == len(files) {
return svcs, fmt.Errorf("could not find %v", svcDefinition)
}
data, err := ioutil.ReadFile(files[pos])
if err != nil {
return svcs, fmt.Errorf("could not read definition: %v", err)
}
err = json.Unmarshal(data, &svcs)
log.WithFields(log.Fields{
"ServiceDefinitionJSON from artifact": string(data),
}).Info("ServiceDefinitionJSON output")
return svcs, err
}
func (d *Deploy) putJobSuccess(execDetails *codepipeline.ExecutionDetails) error {
var err error
input := &codepipeline.PutJobSuccessResultInput{
JobId: aws.String(d.Job.ID),
ExecutionDetails: execDetails,
}
_, err = d.pipe.PutJobSuccessResult(input)
return err
}
func (d *Deploy) putJobFailure(failure *codepipeline.FailureDetails) error {
var err error
input := &codepipeline.PutJobFailureResultInput{
JobId: aws.String(d.Job.ID),
FailureDetails: failure,
}
_, err = d.pipe.PutJobFailureResult(input)
return err
}
func downloadArtifacts(client *s3.S3, artifcats []*event.Artifact, tmpDir string) ([]string, error) {
var err error
var zips []string
var filenames []string
for _, artifact := range artifcats {
filename, err := download(client, artifact.Location.S3Location.BucketName, artifact.Location.S3Location.ObjectKey, tmpDir)
if err != nil {
return filenames, err
}
zips = append(zips, filename)
}
for _, zip := range zips {
files, err := unzip(zip, tmpDir)
if err != nil {
return filenames, err
}
filenames = append(filenames, files...)
}
return filenames, err
}
func download(client *s3.S3, bucket string, key string, dest string) (string, error) {
var fPath string
object, err := client.GetObject(&s3.GetObjectInput{
Bucket: aws.String(bucket),
Key: aws.String(key),
})
if err != nil {
return fPath, err
}
defer object.Body.Close()
buf := bytes.NewBuffer(nil)
if _, err := io.Copy(buf, object.Body); err != nil {
return fPath, err
}
fPath = filepath.Join(dest, key)
if os.MkdirAll(path.Dir(fPath), os.ModePerm) != nil {
return fPath, fmt.Errorf("could not create path: %v", err)
}
err = ioutil.WriteFile(fPath, buf.Bytes(), os.ModePerm)
if err != nil {
return fPath, fmt.Errorf("could not write file: %v", err)
}
return fPath, err
}
func (d *Deploy) getServices() []*string {
var services []*string
for _, svc := range d.Services {
services = append(services, &svc.ServiceName)
}
return services
}
func (d *Deploy) describeTaskDefinition(taskArn *string) (*ecs.TaskDefinition, error) {
var err error
input := &ecs.DescribeTaskDefinitionInput{
TaskDefinition: taskArn,
}
res, err := d.ecs.DescribeTaskDefinitionWithContext(d.ctx, input)
return res.TaskDefinition, err
}
func (d *Deploy) describeServices() ([]*ecs.Service, error) {
var err error
svcs := d.getServices()
input := &ecs.DescribeServicesInput{
Cluster: aws.String(d.ECSCluster),
Services: svcs,
}
res, err := d.ecs.DescribeServicesWithContext(d.ctx, input)
return res.Services, err
}
func (d *Deploy) registerTaskDefinition(task *ecs.TaskDefinition) (*ecs.TaskDefinition, error) {
var err error
input := &ecs.RegisterTaskDefinitionInput{
ContainerDefinitions: task.ContainerDefinitions,
Cpu: task.Cpu,
ExecutionRoleArn: task.ExecutionRoleArn,
Family: task.Family,
Memory: task.Memory,
NetworkMode: task.NetworkMode,
PlacementConstraints: task.PlacementConstraints,
RequiresCompatibilities: task.RequiresCompatibilities,
TaskRoleArn: task.TaskRoleArn,
Volumes: task.Volumes,
}
res, err := d.ecs.RegisterTaskDefinitionWithContext(d.ctx, input)
return res.TaskDefinition, err
}
func unzip(src string, dest string) ([]string, error) {
var filenames []string
r, err := zip.OpenReader(src)
if err != nil {
return filenames, err
}
defer r.Close()
for _, f := range r.File {
rc, err := f.Open()
if err != nil {
return filenames, err
}
defer rc.Close()
// Store filename/path for returning and using later on
fpath := filepath.Join(dest, f.Name)
filenames = append(filenames, fpath)
if f.FileInfo().IsDir() {
// Make Folder
os.MkdirAll(fpath, os.ModePerm)
} else {
// Make File
if err = os.MkdirAll(filepath.Dir(fpath), os.ModePerm); err != nil {
return filenames, err
}
outFile, err := os.OpenFile(fpath, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, f.Mode())
if err != nil {
return filenames, err
}
_, err = io.Copy(outFile, rc)
// Close the file without defer to close before next iteration of loop
outFile.Close()
if err != nil {
return filenames, err
}
}
}
return filenames, nil
}