This repository has been archived by the owner on Jul 18, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
common.go
386 lines (342 loc) · 12.9 KB
/
common.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
package builder
import (
"context"
"crypto/sha1"
"encoding/json"
"fmt"
"io/ioutil"
"math/rand"
"os"
"path/filepath"
"time"
"k8s.io/apimachinery/pkg/api/errors"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/util/wait"
"github.com/docker/distribution/reference"
"github.com/fsouza/go-dockerclient"
s2igit "github.com/openshift/source-to-image/pkg/scm/git"
"github.com/openshift/source-to-image/pkg/util"
buildapiv1 "github.com/openshift/api/build/v1"
"github.com/openshift/origin/pkg/build/builder/timing"
builderutil "github.com/openshift/origin/pkg/build/builder/util"
"github.com/openshift/origin/pkg/build/builder/util/dockerfile"
buildutil "github.com/openshift/origin/pkg/build/util"
"github.com/openshift/origin/pkg/generate/git"
imageapi "github.com/openshift/origin/pkg/image/apis/image"
utilglog "github.com/openshift/origin/pkg/util/glog"
buildclientv1 "github.com/openshift/client-go/build/clientset/versioned/typed/build/v1"
)
// glog is a placeholder until the builders pass an output stream down
// client facing libraries should not be using glog
var glog = utilglog.ToFile(os.Stderr, 2)
const (
// containerNamePrefix prefixes the name of containers launched by a build.
// We cannot reuse the prefix "k8s" because we don't want the containers to
// be managed by a kubelet.
containerNamePrefix = "openshift"
)
// KeyValue can be used to build ordered lists of key-value pairs.
type KeyValue struct {
Key string
Value string
}
// GitClient performs git operations
type GitClient interface {
CloneWithOptions(dir string, url string, args ...string) error
Fetch(dir string, url string, ref string) error
Checkout(dir string, ref string) error
PotentialPRRetryAsFetch(dir string, url string, ref string, err error) error
SubmoduleUpdate(dir string, init, recursive bool) error
TimedListRemote(timeout time.Duration, url string, args ...string) (string, string, error)
GetInfo(location string) (*git.SourceInfo, []error)
}
// buildInfo returns a slice of KeyValue pairs with build metadata to be
// inserted into Docker images produced by build.
func buildInfo(build *buildapiv1.Build, sourceInfo *git.SourceInfo) []KeyValue {
kv := []KeyValue{
{"OPENSHIFT_BUILD_NAME", build.Name},
{"OPENSHIFT_BUILD_NAMESPACE", build.Namespace},
}
if build.Spec.Source.Git != nil {
kv = append(kv, KeyValue{"OPENSHIFT_BUILD_SOURCE", build.Spec.Source.Git.URI})
if build.Spec.Source.Git.Ref != "" {
kv = append(kv, KeyValue{"OPENSHIFT_BUILD_REFERENCE", build.Spec.Source.Git.Ref})
}
if sourceInfo != nil && len(sourceInfo.CommitID) != 0 {
kv = append(kv, KeyValue{"OPENSHIFT_BUILD_COMMIT", sourceInfo.CommitID})
} else if build.Spec.Revision != nil && build.Spec.Revision.Git != nil && build.Spec.Revision.Git.Commit != "" {
kv = append(kv, KeyValue{"OPENSHIFT_BUILD_COMMIT", build.Spec.Revision.Git.Commit})
}
}
if build.Spec.Strategy.SourceStrategy != nil {
env := build.Spec.Strategy.SourceStrategy.Env
for _, e := range env {
kv = append(kv, KeyValue{e.Name, e.Value})
}
}
return kv
}
// randomBuildTag generates a random tag used for building images in such a way
// that the built image can be referred to unambiguously even in the face of
// concurrent builds with the same name in the same namespace.
func randomBuildTag(namespace, name string) string {
repo := fmt.Sprintf("docker.io/%s/%s", namespace, name)
randomTag := fmt.Sprintf("%08x", rand.Uint32())
maxRepoLen := reference.NameTotalLengthMax - len(randomTag) - 1
if len(repo) > maxRepoLen {
repo = fmt.Sprintf("%x", sha1.Sum([]byte(repo)))
}
return fmt.Sprintf("%s:%s", repo, randomTag)
}
// containerName creates names for Docker containers launched by a build. It is
// meant to resemble Kubernetes' pkg/kubelet/dockertools.BuildDockerName.
func containerName(strategyName, buildName, namespace, containerPurpose string) string {
uid := fmt.Sprintf("%08x", rand.Uint32())
return fmt.Sprintf("%s_%s-build_%s_%s_%s_%s",
containerNamePrefix,
strategyName,
buildName,
namespace,
containerPurpose,
uid)
}
// execPostCommitHook uses the client to execute a command based on the
// postCommitSpec in a new ephemeral Docker container running the given image.
// It returns an error if the hook cannot be run or returns a non-zero exit
// code.
func execPostCommitHook(ctx context.Context, client DockerClient, postCommitSpec buildapiv1.BuildPostCommitSpec, image, containerName string) error {
command := postCommitSpec.Command
args := postCommitSpec.Args
script := postCommitSpec.Script
if script == "" && len(command) == 0 && len(args) == 0 {
// Post commit hook is not set, return early.
return nil
}
glog.V(0).Infof("Running post commit hook ...")
glog.V(4).Infof("Post commit hook spec: %+v", postCommitSpec)
if script != "" {
// The `-i` flag is needed to support CentOS and RHEL images
// that use Software Collections (SCL), in order to have the
// appropriate collections enabled in the shell. E.g., in the
// Ruby image, this is necessary to make `ruby`, `bundle` and
// other binaries available in the PATH.
command = []string{"/bin/sh", "-ic"}
args = append([]string{script, command[0]}, args...)
}
limits, err := GetCGroupLimits()
if err != nil {
return fmt.Errorf("read cgroup limits: %v", err)
}
parent, err := getCgroupParent()
if err != nil {
return fmt.Errorf("read cgroup parent: %v", err)
}
startTime := metav1.Now()
err = dockerRun(client, docker.CreateContainerOptions{
Name: containerName,
Config: &docker.Config{
Image: image,
Entrypoint: command,
Cmd: args,
},
HostConfig: &docker.HostConfig{
// Limit container's resource allocation.
// Though we are capped on memory and cpu at the cgroup parent level,
// some build containers care what their memory limit is so they can
// adapt, thus we need to set the memory limit at the container level
// too, so that information is available to them.
Memory: limits.MemoryLimitBytes,
MemorySwap: limits.MemorySwap,
CgroupParent: parent,
},
}, docker.AttachToContainerOptions{
// Stream logs to stdout and stderr.
OutputStream: os.Stdout,
ErrorStream: os.Stderr,
Stream: true,
Stdout: true,
Stderr: true,
})
timing.RecordNewStep(ctx, buildapiv1.StagePostCommit, buildapiv1.StepExecPostCommitHook, startTime, metav1.Now())
return err
}
// GetSourceRevision returns a SourceRevision object either from the build (if it already had one)
// or by creating one from the sourceInfo object passed in.
func GetSourceRevision(build *buildapiv1.Build, sourceInfo *git.SourceInfo) *buildapiv1.SourceRevision {
if build.Spec.Revision != nil {
return build.Spec.Revision
}
return &buildapiv1.SourceRevision{
Git: &buildapiv1.GitSourceRevision{
Commit: sourceInfo.CommitID,
Message: sourceInfo.Message,
Author: buildapiv1.SourceControlUser{
Name: sourceInfo.AuthorName,
Email: sourceInfo.AuthorEmail,
},
Committer: buildapiv1.SourceControlUser{
Name: sourceInfo.CommitterName,
Email: sourceInfo.CommitterEmail,
},
},
}
}
// HandleBuildStatusUpdate handles updating the build status
// retries occur on update conflict and unreachable api server
func HandleBuildStatusUpdate(build *buildapiv1.Build, client buildclientv1.BuildInterface, sourceRev *buildapiv1.SourceRevision) {
var latestBuild *buildapiv1.Build
var err error
updateBackoff := wait.Backoff{
Steps: 10,
Duration: 25 * time.Millisecond,
Factor: 2.0,
Jitter: 0.1,
}
wait.ExponentialBackoff(updateBackoff, func() (bool, error) {
// before updating, make sure we are using the latest version of the build
if latestBuild == nil {
latestBuild, err = client.Get(build.Name, metav1.GetOptions{})
if err != nil {
return false, nil
}
}
if sourceRev != nil {
latestBuild.Spec.Revision = sourceRev
latestBuild.ResourceVersion = ""
}
latestBuild.Status.Phase = build.Status.Phase
latestBuild.Status.Reason = build.Status.Reason
latestBuild.Status.Message = build.Status.Message
latestBuild.Status.Output.To = build.Status.Output.To
latestBuild.Status.Stages = timing.AppendStageAndStepInfo(latestBuild.Status.Stages, build.Status.Stages)
_, err = client.UpdateDetails(latestBuild.Name, latestBuild)
switch {
case err == nil:
return true, nil
case errors.IsConflict(err):
latestBuild = nil
}
glog.V(4).Infof("Retryable error occurred, retrying. error: %v", err)
return false, nil
})
if err != nil {
glog.Infof("error: Unable to update build status: %v", err)
}
}
// buildEnv converts the buildInfo output to a format that appendEnv can
// consume.
func buildEnv(build *buildapiv1.Build, sourceInfo *git.SourceInfo) []dockerfile.KeyValue {
bi := buildInfo(build, sourceInfo)
kv := make([]dockerfile.KeyValue, len(bi))
for i, item := range bi {
kv[i] = dockerfile.KeyValue{Key: item.Key, Value: item.Value}
}
return kv
}
// TODO: remove this shim (required to adapt vendored types)
func toS2ISourceInfo(sourceInfo *git.SourceInfo) *s2igit.SourceInfo {
return &s2igit.SourceInfo{
Ref: sourceInfo.Ref,
CommitID: sourceInfo.CommitID,
Date: sourceInfo.Date,
AuthorName: sourceInfo.AuthorName,
AuthorEmail: sourceInfo.AuthorEmail,
CommitterName: sourceInfo.CommitterName,
CommitterEmail: sourceInfo.CommitterEmail,
Message: sourceInfo.Message,
Location: sourceInfo.Location,
ContextDir: sourceInfo.ContextDir,
}
}
// buildLabels returns a slice of KeyValue pairs in a format that appendLabel can
// consume.
func buildLabels(build *buildapiv1.Build, sourceInfo *git.SourceInfo) []dockerfile.KeyValue {
labels := map[string]string{}
if sourceInfo == nil {
sourceInfo = &git.SourceInfo{}
}
if len(build.Spec.Source.ContextDir) > 0 {
sourceInfo.ContextDir = build.Spec.Source.ContextDir
}
labels = util.GenerateLabelsFromSourceInfo(labels, toS2ISourceInfo(sourceInfo), builderutil.DefaultDockerLabelNamespace)
if build != nil && build.Spec.Source.Git != nil && build.Spec.Source.Git.Ref != "" {
// override the io.openshift.build.commit.ref label to match what we
// were originally told to check out, as well as the
// OPENSHIFT_BUILD_REFERENCE environment variable. This can sometimes
// differ from git's view (see PotentialPRRetryAsFetch for details).
labels[builderutil.DefaultDockerLabelNamespace+"build.commit.ref"] = build.Spec.Source.Git.Ref
}
addBuildLabels(labels, build)
kv := make([]dockerfile.KeyValue, 0, len(labels)+len(build.Spec.Output.ImageLabels))
for k, v := range labels {
kv = append(kv, dockerfile.KeyValue{Key: k, Value: v})
}
// override autogenerated labels with user provided labels
for _, lbl := range build.Spec.Output.ImageLabels {
kv = append(kv, dockerfile.KeyValue{Key: lbl.Name, Value: lbl.Value})
}
return kv
}
// readSourceInfo reads the persisted git info from disk (if any) back into a SourceInfo
// object.
func readSourceInfo() (*git.SourceInfo, error) {
sourceInfoPath := filepath.Join(buildutil.BuildWorkDirMount, "sourceinfo.json")
if _, err := os.Stat(sourceInfoPath); os.IsNotExist(err) {
return nil, nil
}
data, err := ioutil.ReadFile(sourceInfoPath)
if err != nil {
return nil, err
}
sourceInfo := &git.SourceInfo{}
err = json.Unmarshal(data, &sourceInfo)
if err != nil {
return nil, err
}
glog.V(4).Infof("Found git source info: %#v", *sourceInfo)
return sourceInfo, nil
}
// addBuildParameters checks if a Image is set to replace the default base image.
// If that's the case then change the Dockerfile to make the build with the given image.
// Also append the environment variables and labels in the Dockerfile.
func addBuildParameters(dir string, build *buildapiv1.Build, sourceInfo *git.SourceInfo) error {
dockerfilePath := getDockerfilePath(dir, build)
node, err := parseDockerfile(dockerfilePath)
if err != nil {
return err
}
// Update base image if build strategy specifies the From field.
if build.Spec.Strategy.DockerStrategy != nil && build.Spec.Strategy.DockerStrategy.From != nil && build.Spec.Strategy.DockerStrategy.From.Kind == "DockerImage" {
// Reduce the name to a minimal canonical form for the daemon
name := build.Spec.Strategy.DockerStrategy.From.Name
if ref, err := imageapi.ParseDockerImageReference(name); err == nil {
name = ref.DaemonMinimal().Exact()
}
err := replaceLastFrom(node, name)
if err != nil {
return err
}
}
// Append build info as environment variables.
err = appendEnv(node, buildEnv(build, sourceInfo))
if err != nil {
return err
}
// Append build labels.
err = appendLabel(node, buildLabels(build, sourceInfo))
if err != nil {
return err
}
// Insert environment variables defined in the build strategy.
err = insertEnvAfterFrom(node, build.Spec.Strategy.DockerStrategy.Env)
if err != nil {
return err
}
instructions := dockerfile.ParseTreeToDockerfile(node)
// Overwrite the Dockerfile.
fi, err := os.Stat(dockerfilePath)
if err != nil {
return err
}
return ioutil.WriteFile(dockerfilePath, instructions, fi.Mode())
}