Skip to content

Commit 4e52d0a

Browse files
Merge pull request #17146 from coreydaley/github_16557_buildconfiginstantiatefailed_warning
Automatic merge from submit-queue. Fix BuildConfigInstantiateFailed warning when lastVersion == 0 Build config instatiate should not emit a warning when bc.Status.LastVersion != lastVersion and lastVersion == 0 Fixes #16557
2 parents b547bd2 + 8f39e27 commit 4e52d0a

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

pkg/build/controller/buildconfig/buildconfig_controller.go

+6-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ package controller
22

33
import (
44
"fmt"
5+
"strings"
56
"time"
67

78
"github.com/golang/glog"
@@ -136,7 +137,11 @@ func (c *BuildConfigController) handleBuildConfig(bc *buildapi.BuildConfig) erro
136137
} else if buildgenerator.IsFatal(err) || kerrors.IsNotFound(err) || kerrors.IsBadRequest(err) || kerrors.IsForbidden(err) {
137138
instantiateErr = fmt.Errorf("gave up on Build for BuildConfig %s due to fatal error: %v", bcDesc(bc), err)
138139
utilruntime.HandleError(instantiateErr)
139-
c.recorder.Event(bc, kapi.EventTypeWarning, "BuildConfigInstantiateFailed", instantiateErr.Error())
140+
// Fixes https://github.com/openshift/origin/issues/16557
141+
// Caused by a race condition between the ImageChangeTrigger and BuildConfigChangeTrigger
142+
if !strings.Contains(instantiateErr.Error(), "does not match the build request LastVersion(0)") {
143+
c.recorder.Event(bc, kapi.EventTypeWarning, "BuildConfigInstantiateFailed", instantiateErr.Error())
144+
}
140145
return &configControllerFatalError{err.Error()}
141146
} else {
142147
instantiateErr = fmt.Errorf("error instantiating Build from BuildConfig %s: %v", bcDesc(bc), err)

pkg/build/generator/generator.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ func (g *BuildGenerator) instantiate(ctx apirequest.Context, request *buildapi.B
318318
return g.createBuild(ctx, newBuild)
319319
}
320320

321-
// checkBuildConfigLastVersion will return an error if the BuildConfig's LastVersion doesn't match the passed in lastVersion
321+
// checkLastVersion will return an error if the BuildConfig's LastVersion doesn't match the passed in lastVersion
322322
// when lastVersion is not nil
323323
func (g *BuildGenerator) checkLastVersion(bc *buildapi.BuildConfig, lastVersion *int64) error {
324324
if lastVersion != nil && bc.Status.LastVersion != *lastVersion {

test/cmd/newapp.sh

+6
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,12 @@ os::cmd::expect_success 'oc delete all -l app=expose-output'
4242
os::cmd::expect_success_and_text 'oc new-app mysql --as-test' 'Application is not exposed'
4343
os::cmd::expect_success 'oc delete all -l app=mysql'
4444

45+
# ensure that oc new-app does not emit a BuildConfigInstantiateFailed event when creating
46+
# a new application
47+
os::cmd::expect_success 'oc new-app https://github.com/sclorg/ruby-ex'
48+
os::cmd::expect_success_and_not_text 'oc describe bc/ruby-ex' 'BuildConfigInstantiateFailed'
49+
os::cmd::expect_success 'oc delete all -l app=ruby-ex'
50+
4551
# test that imagestream references across imagestreams do not cause an error
4652
os::cmd::try_until_success 'oc get imagestreamtags ruby:2.3'
4753
os::cmd::expect_success 'oc create -f test/testdata/newapp/imagestream-ref.yaml'

0 commit comments

Comments
 (0)