-
Notifications
You must be signed in to change notification settings - Fork 85
/
step_start_instance.go
145 lines (113 loc) · 3.95 KB
/
step_start_instance.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
package worker
import (
"time"
gocontext "context"
"github.com/mitchellh/multistep"
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
"github.com/travis-ci/worker/backend"
"github.com/travis-ci/worker/context"
workererrors "github.com/travis-ci/worker/errors"
"go.opencensus.io/trace"
)
type stepStartInstance struct {
provider backend.Provider
startTimeout time.Duration
}
func (s *stepStartInstance) Run(state multistep.StateBag) multistep.StepAction {
buildJob := state.Get("buildJob").(Job)
ctx := state.Get("ctx").(gocontext.Context)
logWriter := state.Get("logWriter").(LogWriter)
logger := context.LoggerFromContext(ctx).WithField("self", "step_start_instance")
defer context.TimeSince(ctx, "step_start_instance_run", time.Now())
ctx, span := trace.StartSpan(ctx, "StartInstance.Run")
defer span.End()
logger.Info("starting instance")
preTimeoutCtx := ctx
ctx, cancel := gocontext.WithTimeout(ctx, s.startTimeout)
defer cancel()
startTime := time.Now()
var (
instance backend.Instance
err error
)
if s.provider.SupportsProgress() && buildJob.StartAttributes().ProgressType != "" {
var progresser backend.Progresser
switch buildJob.StartAttributes().ProgressType {
case "text":
progresser = backend.NewTextProgresser(logWriter)
_, _ = writeFoldStart(logWriter, "step_start_instance", []byte("\033[33;1mStarting instance\033[0m\r\n"))
defer func() {
_, err := writeFoldEnd(logWriter, "step_start_instance", []byte(""))
if err != nil {
logger.WithFields(logrus.Fields{
"err": err,
}).Error("couldn't write fold end")
}
}()
default:
logger.WithField("progress_type", buildJob.StartAttributes().ProgressType).Warn("unknown progress type")
progresser = &backend.NullProgresser{}
}
instance, err = s.provider.StartWithProgress(ctx, buildJob.StartAttributes(), progresser)
} else {
instance, err = s.provider.Start(ctx, buildJob.StartAttributes())
}
if err != nil {
state.Put("err", err)
span.SetStatus(trace.Status{
Code: trace.StatusCodeUnavailable,
Message: err.Error(),
})
jobAbortErr, ok := errors.Cause(err).(workererrors.JobAbortError)
if ok {
logWriter.WriteAndClose([]byte(jobAbortErr.UserFacingErrorMessage()))
err = buildJob.Finish(preTimeoutCtx, FinishStateErrored)
if err != nil {
logger.WithField("err", err).WithField("state", FinishStateErrored).Error("couldn't mark job as finished")
}
return multistep.ActionHalt
}
logger.WithFields(logrus.Fields{
"err": err,
"start_timeout": s.startTimeout,
}).Error("couldn't start instance, attempting requeue")
context.CaptureError(ctx, err)
err := buildJob.Requeue(preTimeoutCtx)
if err != nil {
logger.WithField("err", err).Error("couldn't requeue job")
}
return multistep.ActionHalt
}
logger.WithFields(logrus.Fields{
"boot_duration_ms": time.Since(startTime).Seconds() * 1e3,
"instance_id": instance.ID(),
"image_name": instance.ImageName(),
"version": VersionString,
"warmed": instance.Warmed(),
}).Info("started instance")
state.Put("instance", instance)
return multistep.ActionContinue
}
func (s *stepStartInstance) Cleanup(state multistep.StateBag) {
ctx := state.Get("ctx").(gocontext.Context)
defer context.TimeSince(ctx, "step_start_instance_cleanup", time.Now())
ctx, span := trace.StartSpan(ctx, "StartInstance.Cleanup")
defer span.End()
instance, ok := state.Get("instance").(backend.Instance)
logger := context.LoggerFromContext(ctx).WithField("self", "step_start_instance")
if !ok {
logger.Info("no instance to stop")
return
}
skipShutdown, ok := state.Get("skipShutdown").(bool)
if ok && skipShutdown {
logger.WithField("instance", instance).Error("skipping shutdown, VM will be left running")
return
}
if err := instance.Stop(ctx); err != nil {
logger.WithFields(logrus.Fields{"err": err, "instance": instance}).Warn("couldn't stop instance")
} else {
logger.Info("stopped instance")
}
}