forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pipeline.go
363 lines (322 loc) · 8.61 KB
/
pipeline.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
package app
import (
"fmt"
"math/rand"
"regexp"
"sort"
"strings"
kapi "github.com/GoogleCloudPlatform/kubernetes/pkg/api"
"github.com/GoogleCloudPlatform/kubernetes/pkg/api/validation"
"github.com/GoogleCloudPlatform/kubernetes/pkg/runtime"
kutil "github.com/GoogleCloudPlatform/kubernetes/pkg/util"
"github.com/golang/glog"
deploy "github.com/openshift/origin/pkg/deploy/api"
image "github.com/openshift/origin/pkg/image/api"
route "github.com/openshift/origin/pkg/route/api"
)
type Pipeline struct {
From string
InputImage *ImageRef
Build *BuildRef
Image *ImageRef
Deployment *DeploymentConfigRef
}
// NewImagePipeline creates a new pipeline with components that are not
// expected to be built
func NewImagePipeline(from string, image *ImageRef) (*Pipeline, error) {
return &Pipeline{
From: from,
Image: image,
}, nil
}
// NewBuildPipeline creates a new pipeline with components that are
// expected to be built
func NewBuildPipeline(from string, input *ImageRef, strategy *BuildStrategyRef, source *SourceRef) (*Pipeline, error) {
name, ok := NameSuggestions{source, input}.SuggestName()
if !ok {
name = fmt.Sprintf("app%d", rand.Intn(10000))
}
output := &ImageRef{
DockerImageReference: image.DockerImageReference{
Name: name,
Tag: image.DefaultImageTag,
},
OutputImage: true,
AsImageStream: true,
}
if input != nil {
// TODO: assumes that build doesn't change the image metadata. In the future
// we could get away with deferred generation possibly.
output.Info = input.Info
}
build := &BuildRef{
Source: source,
Input: input,
Strategy: strategy,
Output: output,
}
return &Pipeline{
From: from,
InputImage: input,
Image: output,
Build: build,
}, nil
}
// NeedsDeployment sets the pipeline for deployment
func (p *Pipeline) NeedsDeployment(env Environment, name string) error {
if p.Deployment != nil {
return nil
}
p.Deployment = &DeploymentConfigRef{
Name: name,
Images: []*ImageRef{
p.Image,
},
Env: env,
}
return nil
}
// Objects converts all the components in the pipeline into runtime objects
func (p *Pipeline) Objects(accept, objectAccept Acceptor) (Objects, error) {
objects := Objects{}
if p.InputImage != nil && p.InputImage.AsImageStream && accept.Accept(p.InputImage) {
repo, err := p.InputImage.ImageStream()
if err != nil {
return nil, err
}
if objectAccept.Accept(repo) {
objects = append(objects, repo)
}
}
if p.Image != nil && p.Image.AsImageStream && accept.Accept(p.Image) {
repo, err := p.Image.ImageStream()
if err != nil {
return nil, err
}
if objectAccept.Accept(repo) {
objects = append(objects, repo)
}
}
if p.Build != nil && accept.Accept(p.Build) {
build, err := p.Build.BuildConfig()
if err != nil {
return nil, err
}
if objectAccept.Accept(build) {
objects = append(objects, build)
}
}
if p.Deployment != nil && accept.Accept(p.Deployment) {
dc, err := p.Deployment.DeploymentConfig()
if err != nil {
return nil, err
}
if objectAccept.Accept(dc) {
objects = append(objects, dc)
}
}
return objects, nil
}
// PipelineGroup is a group of Pipelines
type PipelineGroup []*Pipeline
// Reduce squashes all common components from the pipelines
func (g PipelineGroup) Reduce() error {
var deployment *DeploymentConfigRef
for _, p := range g {
if p.Deployment == nil || p.Deployment == deployment {
continue
}
if deployment == nil {
deployment = p.Deployment
} else {
deployment.Images = append(deployment.Images, p.Deployment.Images...)
deployment.Env = NewEnvironment(deployment.Env, p.Deployment.Env)
p.Deployment = deployment
}
}
return nil
}
func (g PipelineGroup) String() string {
s := []string{}
for _, p := range g {
s = append(s, p.From)
}
return strings.Join(s, "+")
}
const maxServiceNameLength = 24
var invalidServiceChars = regexp.MustCompile("[^-a-z0-9]")
func makeValidServiceName(name string) (string, string) {
if ok, _ := validation.ValidateServiceName(name, false); ok {
return name, ""
}
name = strings.ToLower(name)
name = invalidServiceChars.ReplaceAllString(name, "")
name = strings.TrimFunc(name, func(r rune) bool { return r == '-' })
switch {
case len(name) == 0:
return "", "service-"
case len(name) > maxServiceNameLength:
name = name[:maxServiceNameLength]
}
return name, ""
}
type sortablePorts []kapi.ContainerPort
func (s sortablePorts) Len() int { return len(s) }
func (s sortablePorts) Less(i, j int) bool { return s[i].ContainerPort < s[j].ContainerPort }
func (s sortablePorts) Swap(i, j int) {
p := s[i]
s[i] = s[j]
s[j] = p
}
// AddServices sets up services for the provided objects
func AddServices(objects Objects) Objects {
svcs := []runtime.Object{}
for _, o := range objects {
switch t := o.(type) {
case *deploy.DeploymentConfig:
name, generateName := makeValidServiceName(t.Name)
svc := &kapi.Service{
ObjectMeta: kapi.ObjectMeta{
Name: name,
GenerateName: generateName,
Labels: t.Labels,
},
Spec: kapi.ServiceSpec{
Selector: t.Template.ControllerTemplate.Selector,
},
}
for _, container := range t.Template.ControllerTemplate.Template.Spec.Containers {
ports := sortablePorts(container.Ports)
sort.Sort(&ports)
for _, p := range ports {
svc.Spec.Ports = append(svc.Spec.Ports, kapi.ServicePort{
Name: p.Name,
Port: p.ContainerPort,
Protocol: p.Protocol,
TargetPort: kutil.NewIntOrStringFromInt(p.ContainerPort),
})
break
}
}
if len(svc.Spec.Ports) == 0 {
glog.Warningf("DeploymentConfig %q: Cannot create a service with no ports", t.Name)
continue
}
svcs = append(svcs, svc)
}
}
return append(objects, svcs...)
}
// AddRoutes sets up routes for the provided objects
func AddRoutes(objects Objects) Objects {
routes := []runtime.Object{}
for _, o := range objects {
switch t := o.(type) {
case *kapi.Service:
routes = append(routes, &route.Route{
ObjectMeta: kapi.ObjectMeta{
Name: t.Name,
Labels: t.Labels,
},
ServiceName: t.Name,
})
}
}
return append(objects, routes...)
}
type acceptNew struct{}
// AcceptNew only accepts runtime.Objects with an empty resource version.
var AcceptNew Acceptor = acceptNew{}
// Accept accepts any kind of object
func (acceptNew) Accept(from interface{}) bool {
_, meta, err := objectMetaData(from)
if err != nil {
return false
}
if len(meta.ResourceVersion) > 0 {
return false
}
return true
}
type acceptUnique struct {
typer runtime.ObjectTyper
objects map[string]struct{}
}
// Accept accepts any kind of object it hasn't accepted before
func (a *acceptUnique) Accept(from interface{}) bool {
obj, meta, err := objectMetaData(from)
if err != nil {
return false
}
_, kind, err := a.typer.ObjectVersionAndKind(obj)
if err != nil {
return false
}
key := fmt.Sprintf("%s/%s", kind, meta.Name)
_, exists := a.objects[key]
if exists {
return false
}
a.objects[key] = struct{}{}
return true
}
// NewAcceptUnique creates an acceptor that only accepts unique objects
// by kind and name
func NewAcceptUnique(typer runtime.ObjectTyper) Acceptor {
return &acceptUnique{
typer: typer,
objects: map[string]struct{}{},
}
}
func objectMetaData(raw interface{}) (runtime.Object, *kapi.ObjectMeta, error) {
obj, ok := raw.(runtime.Object)
if !ok {
return nil, nil, fmt.Errorf("%#v is not a runtime.Object", raw)
}
meta, err := kapi.ObjectMetaFor(obj)
if err != nil {
return nil, nil, err
}
return obj, meta, nil
}
// Acceptors is a list of acceptors that behave like a single acceptor.
// All acceptors must accept an object for it to be accepted.
type Acceptors []Acceptor
// Accept iterates through all acceptors and determines whether the object
// should be accepted
func (aa Acceptors) Accept(from interface{}) bool {
for _, a := range aa {
if !a.Accept(from) {
return false
}
}
return true
}
type acceptAll struct{}
// AcceptAll accepts all objects
var AcceptAll Acceptor = acceptAll{}
// Accept accepts everything
func (acceptAll) Accept(_ interface{}) bool {
return true
}
// Objects is a set of runtime objects
type Objects []runtime.Object
// Acceptor is an interface for accepting objects
type Acceptor interface {
Accept(from interface{}) bool
}
type acceptFirst struct {
handled map[interface{}]struct{}
}
// NewAcceptFirst returns a new Acceptor
func NewAcceptFirst() Acceptor {
return &acceptFirst{make(map[interface{}]struct{})}
}
// Accept accepts any object it hasn't accepted before
func (s *acceptFirst) Accept(from interface{}) bool {
if _, ok := s.handled[from]; ok {
return false
}
s.handled[from] = struct{}{}
return true
}