forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
controller.go
212 lines (177 loc) · 7.03 KB
/
controller.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
package controller
import (
"fmt"
"github.com/golang/glog"
kapi "github.com/GoogleCloudPlatform/kubernetes/pkg/api"
errors "github.com/GoogleCloudPlatform/kubernetes/pkg/api/errors"
"github.com/GoogleCloudPlatform/kubernetes/pkg/client/cache"
"github.com/GoogleCloudPlatform/kubernetes/pkg/util"
buildapi "github.com/openshift/origin/pkg/build/api"
buildclient "github.com/openshift/origin/pkg/build/client"
imageapi "github.com/openshift/origin/pkg/image/api"
)
// BuildController watches build resources and manages their state
type BuildController struct {
BuildStore cache.Store
NextBuild func() *buildapi.Build
NextPod func() *kapi.Pod
BuildUpdater buildclient.BuildUpdater
PodManager podManager
BuildStrategy BuildStrategy
ImageRepositoryClient imageRepositoryClient
}
// BuildStrategy knows how to create a pod spec for a pod which can execute a build.
type BuildStrategy interface {
CreateBuildPod(build *buildapi.Build) (*kapi.Pod, error)
}
type podManager interface {
CreatePod(namespace string, pod *kapi.Pod) (*kapi.Pod, error)
DeletePod(namespace string, pod *kapi.Pod) error
}
type imageRepositoryClient interface {
GetImageRepository(namespace, name string) (*imageapi.ImageRepository, error)
}
// Run begins watching and syncing build jobs onto the cluster.
func (bc *BuildController) Run() {
go util.Forever(func() { bc.HandleBuild(bc.NextBuild()) }, 0)
go util.Forever(func() { bc.HandlePod(bc.NextPod()) }, 0)
}
func (bc *BuildController) HandleBuild(build *buildapi.Build) {
glog.V(4).Infof("Handling build %s", build.Name)
// We only deal with new builds here
if build.Status != buildapi.BuildStatusNew {
return
}
if err := bc.nextBuildStatus(build); err != nil {
// TODO: all build errors should be retried, and build error should not be a permanent status change.
// Instead, we should requeue this build request using the same backoff logic as the scheduler.
// BuildStatusError should be reserved for meaning "permanently errored, no way to try again".
glog.V(4).Infof("Build failed with error %s/%s: %#v", build.Namespace, build.Name, err)
build.Status = buildapi.BuildStatusError
build.Message = err.Error()
}
if err := bc.BuildUpdater.Update(build.Namespace, build); err != nil {
glog.V(2).Infof("Failed to record changes to build %s/%s: %#v", build.Namespace, build.Name, err)
}
}
// nextBuildStatus updates build with any appropriate changes, or returns an error if
// the change cannot occur. When returning nil, be sure to set build.Status and optionally
// build.Message.
func (bc *BuildController) nextBuildStatus(build *buildapi.Build) error {
// If a cancelling event was triggered for the build, update build status.
if build.Cancelled {
glog.V(4).Infof("Cancelling build %s.", build.Name)
build.Status = buildapi.BuildStatusCancelled
return nil
}
// lookup the destination from the referenced image repository
spec := build.Parameters.Output.DockerImageReference
if ref := build.Parameters.Output.To; ref != nil {
// TODO: security, ensure that the reference image stream is actually visible
namespace := ref.Namespace
if len(namespace) == 0 {
namespace = build.Namespace
}
repo, err := bc.ImageRepositoryClient.GetImageRepository(namespace, ref.Name)
if err != nil {
if errors.IsNotFound(err) {
return fmt.Errorf("the referenced output image repository %s/%s does not exist", namespace, ref.Name)
}
return fmt.Errorf("the referenced output repo %s/%s could not be found by %s/%s: %v", namespace, ref.Name, build.Namespace, build.Name, err)
}
if len(build.Parameters.Output.Tag) == 0 {
spec = repo.Status.DockerImageRepository
} else {
spec = fmt.Sprintf("%s:%s", repo.Status.DockerImageRepository, build.Parameters.Output.Tag)
}
}
// set the expected build parameters, which will be saved if no error occurs
build.Status = buildapi.BuildStatusPending
build.PodName = fmt.Sprintf("build-%s", build.Name)
// override DockerImageReference in the strategy for the copy we send to the server
build.Parameters.Output.DockerImageReference = spec
copy, err := kapi.Scheme.Copy(build)
if err != nil {
return fmt.Errorf("unable to copy build: %v", err)
}
buildCopy := copy.(*buildapi.Build)
// invoke the strategy to get a build pod
podSpec, err := bc.BuildStrategy.CreateBuildPod(buildCopy)
if err != nil {
return fmt.Errorf("the strategy failed to create a build pod for %s/%s: %v", build.Namespace, build.Name, err)
}
if _, err := bc.PodManager.CreatePod(build.Namespace, podSpec); err != nil {
if errors.IsAlreadyExists(err) {
glog.V(4).Infof("Build pod already existed: %#v", podSpec)
return nil
}
return fmt.Errorf("failed to create pod for build %s/%s: s", build.Namespace, build.Name, err)
}
glog.V(4).Infof("Created pod for build: %#v", podSpec)
return nil
}
func (bc *BuildController) HandlePod(pod *kapi.Pod) {
// Find the build for this pod
var build *buildapi.Build
for _, obj := range bc.BuildStore.List() {
b := obj.(*buildapi.Build)
if b.PodName == pod.Name {
build = b
break
}
}
if build == nil {
return
}
// A cancelling event was triggered for the build, delete its pod and update build status.
if build.Cancelled {
glog.V(2).Infof("Cancelling build %s.", build.Name)
if err := bc.CancelBuild(build, pod); err != nil {
glog.Errorf("Failed to cancel build %s: %#v", build.Name, err)
}
return
}
nextStatus := build.Status
switch pod.Status.Phase {
case kapi.PodRunning:
// The pod's still running
nextStatus = buildapi.BuildStatusRunning
case kapi.PodSucceeded, kapi.PodFailed:
// Check the exit codes of all the containers in the pod
nextStatus = buildapi.BuildStatusComplete
for _, info := range pod.Status.Info {
if info.State.Termination != nil && info.State.Termination.ExitCode != 0 {
nextStatus = buildapi.BuildStatusFailed
break
}
}
}
if build.Status != nextStatus {
glog.V(4).Infof("Updating build %s status %s -> %s", build.Name, build.Status, nextStatus)
build.Status = nextStatus
if err := bc.BuildUpdater.Update(build.Namespace, build); err != nil {
glog.Errorf("Failed to update build %s: %#v", build.Name, err)
}
}
}
// CancelBuild updates a build status to Cancelled, after its associated pod is associated.
func (bc *BuildController) CancelBuild(build *buildapi.Build, pod *kapi.Pod) error {
if !isBuildCancellable(build) {
glog.V(2).Infof("The build can be cancelled only if it has pending/running status, not %s.", build.Status)
return nil
}
err := bc.PodManager.DeletePod(build.Namespace, pod)
if err != nil && !errors.IsNotFound(err) {
return err
}
build.Status = buildapi.BuildStatusCancelled
if err := bc.BuildUpdater.Update(build.Namespace, build); err != nil {
return err
}
glog.V(2).Infof("Build %s was successfully cancelled.", build.Name)
return nil
}
// isBuildCancellable checks for build status and returns true if the condition is checked.
func isBuildCancellable(build *buildapi.Build) bool {
return build.Status == buildapi.BuildStatusNew || build.Status == buildapi.BuildStatusPending || build.Status == buildapi.BuildStatusRunning
}