forked from drone-runners/drone-runner-kube
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexec.go
430 lines (358 loc) · 10.3 KB
/
exec.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
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
// Copyright 2019 Drone.IO Inc. All rights reserved.
// Use of this source code is governed by the Polyform License
// that can be found in the LICENSE file.
package command
import (
"context"
"encoding/json"
"fmt"
"io/ioutil"
"os"
"path/filepath"
"strings"
"time"
"github.com/drone-runners/drone-runner-kube/command/internal"
"github.com/drone-runners/drone-runner-kube/engine"
"github.com/drone-runners/drone-runner-kube/engine/compiler"
"github.com/drone-runners/drone-runner-kube/engine/linter"
"github.com/drone-runners/drone-runner-kube/engine/policy"
"github.com/drone-runners/drone-runner-kube/engine/resource"
"github.com/drone-runners/drone-runner-kube/internal/kube"
"github.com/drone/drone-go/drone"
"github.com/drone/envsubst"
"github.com/drone/runner-go/environ"
"github.com/drone/runner-go/environ/provider"
"github.com/drone/runner-go/logger"
"github.com/drone/runner-go/manifest"
"github.com/drone/runner-go/pipeline"
"github.com/drone/runner-go/pipeline/runtime"
"github.com/drone/runner-go/pipeline/streamer/console"
"github.com/drone/runner-go/registry"
"github.com/drone/runner-go/secret"
"github.com/drone/signal"
"github.com/mattn/go-isatty"
"github.com/sirupsen/logrus"
"gopkg.in/alecthomas/kingpin.v2"
)
type execCommand struct {
*internal.Flags
Source *os.File
KubeConfig string
Include []string
Exclude []string
Privileged []string
Volumes map[string]string
Environ map[string]string
Labels map[string]string
Secrets map[string]string
Resource compiler.Resources
StageRequests compiler.ResourceObject
Namespace string
Policy string
Tmate compiler.Tmate
Clone bool
Pretty bool
Procs int64
Log struct {
Debug bool
Trace bool
Dump bool
}
Engine struct {
ContainerStartTimeout int
}
KubeClient kube.ClientConfig
}
func (c *execCommand) run(*kingpin.ParseContext) error {
// resource memory amounts are provided in megabytes, so convert them to bytes.
c.Resource.Limits.Memory *= 1024 * 1024
c.Resource.MinRequests.Memory *= 1024 * 1024
c.StageRequests.Memory *= 1024 * 1024
rawsource, err := ioutil.ReadAll(c.Source)
if err != nil {
return err
}
kubeconfig := c.KubeConfig
if kubeconfig == "" {
dir, _ := os.UserHomeDir()
kubeconfig = filepath.Join(dir, ".kube", "config")
}
envs := environ.Combine(
c.Environ,
environ.System(c.System),
environ.Repo(c.Repo),
environ.Build(c.Build),
environ.Stage(c.Stage),
environ.Link(c.Repo, c.Build, c.System),
c.Build.Params,
)
// parse the policy file
var policies []*policy.Policy
if c.Policy != "" {
policies, err = policy.ParseFile(c.Policy)
if err != nil {
return err
}
}
// string substitution function ensures that string
// replacement variables are escaped and quoted if they
// contain newlines.
subf := func(k string) string {
v := envs[k]
if strings.Contains(v, "\n") {
v = fmt.Sprintf("%q", v)
}
return v
}
// evaluates string replacement expressions and returns an
// update configuration.
config, err := envsubst.Eval(string(rawsource), subf)
if err != nil {
return err
}
// parse and lint the configuration.
manifest, err := manifest.ParseString(config)
if err != nil {
return err
}
// a configuration can contain multiple pipelines.
// get a specific pipeline resource for execution.
resource, err := resource.Lookup(c.Stage.Name, manifest)
if err != nil {
return err
}
// lint the pipeline and return an error if any
// linting rules are broken
lint := linter.New(nil)
err = lint.Lint(resource, c.Repo)
if err != nil {
return err
}
// compile the pipeline to an intermediate representation.
comp := &compiler.Compiler{
Environ: provider.Static(c.Environ),
Labels: c.Labels,
Tmate: c.Tmate,
Privileged: append(c.Privileged, compiler.Privileged...),
Volumes: c.Volumes,
Secret: secret.StaticVars(c.Secrets),
Registry: registry.Combine(),
Resources: compiler.Resources{
Limits: c.Resource.Limits,
MinRequests: c.Resource.MinRequests,
},
StageRequests: c.StageRequests,
Namespace: c.Namespace,
Policies: policies,
}
args := runtime.CompilerArgs{
Pipeline: resource,
Manifest: manifest,
Build: c.Build,
Netrc: c.Netrc,
Repo: c.Repo,
Stage: c.Stage,
System: c.System,
Secret: secret.StaticVars(c.Secrets),
}
spec := comp.Compile(nocontext, args).(*engine.Spec)
// include only steps that are in the include list,
// if the list in non-empty.
if len(c.Include) > 0 {
I:
for _, step := range spec.Steps {
if step.Name == "clone" {
continue
}
for _, name := range c.Include {
if step.Name == name {
continue I
}
}
step.RunPolicy = runtime.RunNever
}
}
// exclude steps that are in the exclude list,
// if the list in non-empty.
if len(c.Exclude) > 0 {
E:
for _, step := range spec.Steps {
if step.Name == "clone" {
continue
}
for _, name := range c.Exclude {
if step.Name == name {
step.RunPolicy = runtime.RunNever
continue E
}
}
}
}
// create a step object for each pipeline step.
for _, step := range spec.Steps {
if step.RunPolicy == runtime.RunNever {
continue
}
c.Stage.Steps = append(c.Stage.Steps, &drone.Step{
StageID: c.Stage.ID,
Number: len(c.Stage.Steps) + 1,
Name: step.Name,
Status: drone.StatusPending,
ErrIgnore: step.ErrPolicy == runtime.ErrIgnore,
})
}
// configures the pipeline timeout.
timeout := time.Duration(c.Repo.Timeout) * time.Minute
ctx, cancel := context.WithTimeout(nocontext, timeout)
defer cancel()
// listen for operating system signals and cancel execution
// when received.
ctx = signal.WithContextFunc(ctx, func() {
println("received signal, terminating process")
cancel()
})
state := &pipeline.State{
Build: c.Build,
Stage: c.Stage,
Repo: c.Repo,
System: c.System,
}
state.Build.Status = drone.StatusRunning
state.Stage.Status = drone.StatusRunning
// enable debug logging
logrus.SetLevel(logrus.WarnLevel)
if c.Log.Debug {
logrus.SetLevel(logrus.DebugLevel)
}
if c.Log.Trace {
logrus.SetLevel(logrus.TraceLevel)
}
logger.Default = logger.Logrus(
logrus.NewEntry(
logrus.StandardLogger(),
),
)
// change to out-of-cluster for local testing
kubeClient, err := kube.NewFromConfig(&c.KubeClient, kubeconfig)
if err != nil {
return err
}
engine := engine.New(kubeClient,
time.Duration(c.Engine.ContainerStartTimeout)*time.Second)
err = runtime.NewExecer(
pipeline.NopReporter(),
console.New(c.Pretty),
pipeline.NopUploader(),
engine,
c.Procs,
).Exec(ctx, spec, state)
if c.Log.Dump {
dump(state)
}
if err != nil {
logrus.
WithError(err).
Error("Stage failed with an error")
return err
}
switch state.Stage.Status {
case drone.StatusError, drone.StatusFailing, drone.StatusKilled:
logrus.
WithField("status", state.Stage.Status).
Warn("Stage failed")
os.Exit(1)
}
return nil
}
func dump(v interface{}) {
enc := json.NewEncoder(os.Stdout)
enc.SetIndent("", " ")
enc.Encode(v)
}
func registerExec(app *kingpin.Application) {
c := new(execCommand)
c.Environ = map[string]string{}
c.Secrets = map[string]string{}
c.Labels = map[string]string{}
c.Volumes = map[string]string{}
cmd := app.Command("exec", "executes a pipeline").
Action(c.run)
cmd.Arg("source", "source file location").
Default(".drone.yml").
FileVar(&c.Source)
cmd.Flag("clone", "enable cloning").
BoolVar(&c.Clone)
cmd.Flag("secrets", "secret parameters").
StringMapVar(&c.Secrets)
cmd.Flag("include", "include pipeline steps").
StringsVar(&c.Include)
cmd.Flag("exclude", "exclude pipeline steps").
StringsVar(&c.Exclude)
cmd.Flag("environ", "environment variables").
StringMapVar(&c.Environ)
cmd.Flag("labels", "container labels").
StringMapVar(&c.Labels)
cmd.Flag("volumes", "container volumes").
StringMapVar(&c.Volumes)
cmd.Flag("privileged", "privileged docker images").
StringsVar(&c.Privileged)
cmd.Flag("kubeconfig", "path to the kubernetes config file").
StringVar(&c.KubeConfig)
cmd.Flag("limit-memory", "memory limit in MiB for containers").
Int64Var(&c.Resource.Limits.Memory)
cmd.Flag("limit-cpu", "cpu limit in millicores for containers").
Int64Var(&c.Resource.Limits.CPU)
cmd.Flag("request-memory", "memory in MiB for entire pod").
Default("100"). // Default is 100MiB
Int64Var(&c.StageRequests.Memory)
cmd.Flag("request-cpu", "cpu in millicores for entire pod").
Default("100").
Int64Var(&c.StageRequests.CPU)
cmd.Flag("min-request-memory", "min memory in MiB allocated to each container").
Default("4"). // Default is 4MiB
Int64Var(&c.Resource.MinRequests.Memory)
cmd.Flag("min-request-cpu", "min cpu in millicores allocated to each container").
Default("1").
Int64Var(&c.Resource.MinRequests.CPU)
cmd.Flag("policy", "path to the pipeline policy file").
StringVar(&c.Policy)
cmd.Flag("namespace", "default kubernetes namespace").
Default("default").
StringVar(&c.Namespace)
cmd.Flag("debug", "enable debug logging").
BoolVar(&c.Log.Debug)
cmd.Flag("trace", "enable trace logging").
BoolVar(&c.Log.Trace)
cmd.Flag("dump", "dump the pipeline state to stdout").
BoolVar(&c.Log.Dump)
cmd.Flag("pretty", "pretty print the output").
Default(
fmt.Sprint(
isatty.IsTerminal(
os.Stdout.Fd(),
),
),
).BoolVar(&c.Pretty)
cmd.Flag("tmate-image", "tmate docker image").
Default("drone/drone-runner-docker:latest").
StringVar(&c.Tmate.Image)
cmd.Flag("tmate-enabled", "tmate enabled").
BoolVar(&c.Tmate.Enabled)
cmd.Flag("tmate-server-host", "tmate server host").
StringVar(&c.Tmate.Server)
cmd.Flag("tmate-server-port", "tmate server port").
StringVar(&c.Tmate.Port)
cmd.Flag("tmate-server-rsa-fingerprint", "tmate server rsa fingerprint").
StringVar(&c.Tmate.RSA)
cmd.Flag("tmate-server-ed25519-fingerprint", "tmate server rsa fingerprint").
StringVar(&c.Tmate.ED25519)
cmd.Flag("engine-container-start-timeout", "number of seconds to wait for a container to start").
Default("480").
IntVar(&c.Engine.ContainerStartTimeout)
cmd.Flag("kube-client-qps", "k8s client throttle control: maximum queries per second").
Float32Var(&c.KubeClient.QPS)
cmd.Flag("kube-client-burst", "k8s client throttle control: maximum burst").
IntVar(&c.KubeClient.Burst)
// shared pipeline flags
c.Flags = internal.ParseFlags(cmd)
}