Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

new-app: appropriately warn/error on circular builds #12104

Merged
merged 1 commit into from
Dec 4, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
57 changes: 40 additions & 17 deletions pkg/generate/app/cmd/newapp.go
Original file line number Diff line number Diff line change
Expand Up @@ -684,6 +684,46 @@ func (c *AppConfig) Run() (*AppResult, error) {
if err != nil {
return nil, err
}

// check for circular reference specifically from the template objects and print warnings if they exist
err = c.checkCircularReferences(templateObjects)
if err != nil {
if err, ok := err.(app.CircularOutputReferenceError); ok {
// templates only apply to `oc new-app`
addOn := ""
if len(c.Name) == 0 {
addOn = ", override artifact names with --name"
}
fmt.Fprintf(c.ErrOut, "--> WARNING: %v\n%s", err, addOn)
} else {
return nil, err
}
}
// check for circular reference specifically from the newly generated objects, handling new-app vs. new-build nuances as needed
err = c.checkCircularReferences(objects)
if err != nil {
if err, ok := err.(app.CircularOutputReferenceError); ok {
if c.ExpectToBuild {
// circular reference handling for `oc new-build`.
if len(c.To) == 0 {
// Output reference was generated, return error.
return nil, fmt.Errorf("%v, set a different tag with --to", err)
}
// Output reference was explicitly provided, print warning.
fmt.Fprintf(c.ErrOut, "--> WARNING: %v\n", err)
} else {
// circular reference handling for `oc new-app`
if len(c.Name) == 0 {
return nil, fmt.Errorf("%v, override artifact names with --name", err)
}
// Output reference was explicitly provided, print warning.
fmt.Fprintf(c.ErrOut, "--> WARNING: %v\n", err)
}
} else {
return nil, err
}
}

objects = append(objects, templateObjects...)

name = c.Name
Expand All @@ -707,23 +747,6 @@ func (c *AppConfig) Run() (*AppResult, error) {
}
}

// Only check circular references for `oc new-build`.
if c.ExpectToBuild {
err = c.checkCircularReferences(objects)
if err != nil {
if err, ok := err.(app.CircularOutputReferenceError); ok {
if len(c.To) == 0 {
// Output reference was generated, return error.
return nil, fmt.Errorf("%v, set a different tag with --to", err)
}
// Output reference was explicitly provided, print warning.
fmt.Fprintf(c.ErrOut, "--> WARNING: %v\n", err)
} else {
return nil, err
}
}
}

return &AppResult{
List: &kapi.List{Items: objects},
Name: name,
Expand Down
4 changes: 4 additions & 0 deletions test/cmd/newapp.sh
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,10 @@ os::cmd::expect_success_and_text 'oc new-build --name mybuild --binary --strateg
os::cmd::expect_failure_and_text 'oc new-build mysql --source-image centos' 'error: --source-image-path must be specified when --source-image is specified.'
os::cmd::expect_failure_and_text 'oc new-build mysql --source-image-path foo' 'error: --source-image must be specified when --source-image-path is specified.'

# ensure circular ref flagged but allowed for template
os::cmd::expect_success 'oc create -f test/testdata/circular-is.yaml'
os::cmd::expect_success_and_text 'oc new-app -f test/testdata/circular.yaml' 'should be different than input'

# do not allow use of non-existent image (should fail)
os::cmd::expect_failure_and_text 'oc new-app openshift/bogusimage https://github.com/openshift/ruby-hello-world.git -o yaml' "no match for"
# allow use of non-existent image (should succeed)
Expand Down
9 changes: 9 additions & 0 deletions test/testdata/circular-is.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
apiVersion: v1
items:
- apiVersion: v1
kind: ImageStream
metadata:
name: newapp-circular-template
spec: {}
kind: List
metadata: {}
39 changes: 39 additions & 0 deletions test/testdata/circular.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
apiVersion: v1
kind: Template
metadata:
name: circular
objects:
- apiVersion: v1
kind: BuildConfig
metadata:
name: newapp-circular-template
spec:
nodeSelector: null
output:
to:
kind: ImageStreamTag
name: newapp-circular-template:latest
postCommit: {}
resources: {}
runPolicy: Serial
source:
git:
uri: https://github.com/openshift/ruby-hello-world
type: Git
strategy:
dockerStrategy:
from:
kind: ImageStreamTag
name: newapp-circular-template:latest
type: Docker
triggers:
- github:
secret: faSaQS1VY-gdRMwge4eV
type: GitHub
- generic:
secret: u-_J-vtKR5K3GykKwCuK
type: Generic
- imageChange: {}
type: ImageChange
status:
lastVersion: 0