Skip to content

Commit 027b95f

Browse files
author
OpenShift Bot
authored
Merge pull request #11897 from jim-minter/trello123-pipeline-buildconfigs
Merged by openshift-bot
2 parents 2450c32 + 1226bd1 commit 027b95f

27 files changed

+456
-329
lines changed

docs/man/man1/oc-new-app.1

+2-2
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,8 @@ If you provide source code, a new build will be automatically triggered. You can
115115
Search all templates, image streams, and Docker images that match the arguments provided.
116116

117117
.PP
118-
\fB\-\-strategy\fP=""
119-
Specify the build strategy to use if you don't want to detect (docker|source).
118+
\fB\-\-strategy\fP=
119+
Specify the build strategy to use if you don't want to detect (docker|pipeline|source).
120120

121121
.PP
122122
\fB\-\-template\fP=[]

docs/man/man1/oc-new-build.1

+2-2
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@ Once the build configuration is created a new build will be automatically trigge
103103
Specify the file or directory to copy from the source image and its destination in the build directory. Format: [source]:[destination\-dir].
104104

105105
.PP
106-
\fB\-\-strategy\fP=""
107-
Specify the build strategy to use if you don't want to detect (docker|source).
106+
\fB\-\-strategy\fP=
107+
Specify the build strategy to use if you don't want to detect (docker|pipeline|source).
108108

109109
.PP
110110
\fB\-\-to\fP=""

docs/man/man1/openshift-cli-new-app.1

+2-2
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,8 @@ If you provide source code, a new build will be automatically triggered. You can
115115
Search all templates, image streams, and Docker images that match the arguments provided.
116116

117117
.PP
118-
\fB\-\-strategy\fP=""
119-
Specify the build strategy to use if you don't want to detect (docker|source).
118+
\fB\-\-strategy\fP=
119+
Specify the build strategy to use if you don't want to detect (docker|pipeline|source).
120120

121121
.PP
122122
\fB\-\-template\fP=[]

docs/man/man1/openshift-cli-new-build.1

+2-2
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@ Once the build configuration is created a new build will be automatically trigge
103103
Specify the file or directory to copy from the source image and its destination in the build directory. Format: [source]:[destination\-dir].
104104

105105
.PP
106-
\fB\-\-strategy\fP=""
107-
Specify the build strategy to use if you don't want to detect (docker|source).
106+
\fB\-\-strategy\fP=
107+
Specify the build strategy to use if you don't want to detect (docker|pipeline|source).
108108

109109
.PP
110110
\fB\-\-to\fP=""

pkg/cmd/cli/cmd/newapp.go

+7-1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ import (
3434
"github.com/openshift/origin/pkg/cmd/util/clientcmd"
3535
dockerutil "github.com/openshift/origin/pkg/cmd/util/docker"
3636
configcmd "github.com/openshift/origin/pkg/config/cmd"
37+
"github.com/openshift/origin/pkg/generate"
3738
newapp "github.com/openshift/origin/pkg/generate/app"
3839
newcmd "github.com/openshift/origin/pkg/generate/app/cmd"
3940
"github.com/openshift/origin/pkg/generate/git"
@@ -170,7 +171,7 @@ func NewCmdNewApplication(name, baseName string, f *clientcmd.Factory, out, erro
170171
cmd.Flags().StringSliceVar(&config.Groups, "group", config.Groups, "Indicate components that should be grouped together as <comp1>+<comp2>.")
171172
cmd.Flags().StringArrayVarP(&config.Environment, "env", "e", config.Environment, "Specify a key-value pair for an environment variable to set into each container. This doesn't apply to objects created from a template, use parameters instead.")
172173
cmd.Flags().StringVar(&config.Name, "name", "", "Set name to use for generated application artifacts")
173-
cmd.Flags().StringVar(&config.Strategy, "strategy", "", "Specify the build strategy to use if you don't want to detect (docker|source).")
174+
cmd.Flags().Var(&config.Strategy, "strategy", "Specify the build strategy to use if you don't want to detect (docker|pipeline|source).")
174175
cmd.Flags().StringP("labels", "l", "", "Label to set in all resources for this application.")
175176
cmd.Flags().BoolVar(&config.InsecureRegistry, "insecure-registry", false, "If true, indicates that the referenced Docker images are on insecure registries and should bypass certificate checking")
176177
cmd.Flags().BoolVarP(&config.AsList, "list", "L", false, "List all local templates and image streams that can be used to create.")
@@ -505,6 +506,11 @@ func CompleteAppConfig(config *newcmd.AppConfig, f *clientcmd.Factory, c *cobra.
505506
if len(config.SourceImage) == 0 && len(config.SourceImagePath) != 0 {
506507
return kcmdutil.UsageError(c, "--source-image must be specified when --source-image-path is specified.")
507508
}
509+
510+
if config.BinaryBuild && config.Strategy == generate.StrategyPipeline {
511+
return kcmdutil.UsageError(c, "specifying binary builds and the pipeline strategy at the same time is not allowed.")
512+
}
513+
508514
return nil
509515
}
510516

pkg/cmd/cli/cmd/newapp_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ func TestNewAppDefaultFlags(t *testing.T) {
7272
},
7373
"strategy": {
7474
flagName: "strategy",
75-
defaultVal: config.Strategy,
75+
defaultVal: "",
7676
},
7777
"labels": {
7878
flagName: "labels",

pkg/cmd/cli/cmd/newbuild.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ func NewCmdNewBuild(name, baseName string, f *clientcmd.Factory, in io.Reader, o
129129
cmd.Flags().StringVar(&config.To, "to", "", "Push built images to this image stream tag (or Docker image repository if --to-docker is set).")
130130
cmd.Flags().BoolVar(&config.OutputDocker, "to-docker", false, "Have the build output push to a Docker repository.")
131131
cmd.Flags().StringArrayVarP(&config.Environment, "env", "e", config.Environment, "Specify a key-value pair for an environment variable to set into resulting image.")
132-
cmd.Flags().StringVar(&config.Strategy, "strategy", "", "Specify the build strategy to use if you don't want to detect (docker|source).")
132+
cmd.Flags().Var(&config.Strategy, "strategy", "Specify the build strategy to use if you don't want to detect (docker|pipeline|source).")
133133
cmd.Flags().StringVarP(&config.Dockerfile, "dockerfile", "D", "", "Specify the contents of a Dockerfile to build directly, implies --strategy=docker. Pass '-' to read from STDIN.")
134134
cmd.Flags().BoolVar(&config.BinaryBuild, "binary", false, "Instead of expecting a source URL, set the build to expect binary contents. Will disable triggers.")
135135
cmd.Flags().StringP("labels", "l", "", "Label to set in all generated resources.")

pkg/generate/app/app.go

+21-9
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import (
1010
"strconv"
1111
"strings"
1212

13+
"github.com/golang/glog"
1314
"github.com/pborman/uuid"
1415
kapi "k8s.io/kubernetes/pkg/api"
1516
"k8s.io/kubernetes/pkg/api/unversioned"
@@ -18,6 +19,7 @@ import (
1819

1920
buildapi "github.com/openshift/origin/pkg/build/api"
2021
deployapi "github.com/openshift/origin/pkg/deploy/api"
22+
"github.com/openshift/origin/pkg/generate"
2123
"github.com/openshift/origin/pkg/generate/git"
2224
imageapi "github.com/openshift/origin/pkg/image/api"
2325
"github.com/openshift/origin/pkg/util"
@@ -193,13 +195,19 @@ func (r *SourceRef) BuildSource() (*buildapi.BuildSource, []buildapi.BuildTrigge
193195

194196
// BuildStrategyRef is a reference to a build strategy
195197
type BuildStrategyRef struct {
196-
IsDockerBuild bool
197-
Base *ImageRef
198+
Strategy generate.Strategy
199+
Base *ImageRef
198200
}
199201

200202
// BuildStrategy builds an OpenShift BuildStrategy from a BuildStrategyRef
201203
func (s *BuildStrategyRef) BuildStrategy(env Environment) (*buildapi.BuildStrategy, []buildapi.BuildTriggerPolicy) {
202-
if s.IsDockerBuild {
204+
switch s.Strategy {
205+
case generate.StrategyPipeline:
206+
return &buildapi.BuildStrategy{
207+
JenkinsPipelineStrategy: &buildapi.JenkinsPipelineBuildStrategy{},
208+
}, s.Base.BuildTriggers()
209+
210+
case generate.StrategyDocker:
203211
var triggers []buildapi.BuildTriggerPolicy
204212
strategy := &buildapi.DockerBuildStrategy{
205213
Env: env.List(),
@@ -212,14 +220,18 @@ func (s *BuildStrategyRef) BuildStrategy(env Environment) (*buildapi.BuildStrate
212220
return &buildapi.BuildStrategy{
213221
DockerStrategy: strategy,
214222
}, triggers
223+
224+
case generate.StrategySource:
225+
return &buildapi.BuildStrategy{
226+
SourceStrategy: &buildapi.SourceBuildStrategy{
227+
From: s.Base.ObjectReference(),
228+
Env: env.List(),
229+
},
230+
}, s.Base.BuildTriggers()
215231
}
216232

217-
return &buildapi.BuildStrategy{
218-
SourceStrategy: &buildapi.SourceBuildStrategy{
219-
From: s.Base.ObjectReference(),
220-
Env: env.List(),
221-
},
222-
}, s.Base.BuildTriggers()
233+
glog.Error("BuildStrategy called with unknown strategy")
234+
return nil, nil
223235
}
224236

225237
// BuildRef is a reference to a build configuration

pkg/generate/app/cmd/describe.go

+3-8
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import (
1010
"k8s.io/kubernetes/pkg/util/sets"
1111

1212
"github.com/openshift/origin/pkg/cmd/cli/describe"
13+
"github.com/openshift/origin/pkg/generate"
1314
"github.com/openshift/origin/pkg/generate/app"
1415
imageapi "github.com/openshift/origin/pkg/image/api"
1516
)
@@ -148,16 +149,10 @@ func describeBuildPipelineWithImage(out io.Writer, ref app.ComponentReference, p
148149
}
149150
matches = append(matches, t.Platform)
150151
}
151-
if len(matches) > 0 && !pipeline.Build.Strategy.IsDockerBuild {
152+
if len(matches) > 0 && pipeline.Build.Strategy.Strategy == generate.StrategySource {
152153
fmt.Fprintf(out, " * The source repository appears to match: %s\n", strings.Join(matches, ", "))
153154
}
154155
}
155-
var strategy string
156-
if pipeline.Build.Strategy.IsDockerBuild {
157-
strategy = "Docker"
158-
} else {
159-
strategy = "source"
160-
}
161156
noSource := false
162157
var source string
163158
switch s := pipeline.Build.Source; {
@@ -175,7 +170,7 @@ func describeBuildPipelineWithImage(out io.Writer, ref app.ComponentReference, p
175170
source = "<unknown>"
176171
}
177172

178-
fmt.Fprintf(out, " * A %s build using %s will be created\n", strategy, source)
173+
fmt.Fprintf(out, " * A %s build using %s will be created\n", pipeline.Build.Strategy.Strategy, source)
179174
if buildOut, err := pipeline.Build.Output.BuildOutput(); err == nil && buildOut != nil && buildOut.To != nil {
180175
switch to := buildOut.To; {
181176
case to.Kind == "ImageStreamTag":

pkg/generate/app/cmd/newapp.go

+19-27
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,10 @@ import (
2828
"github.com/openshift/origin/pkg/client"
2929
cmdutil "github.com/openshift/origin/pkg/cmd/util"
3030
"github.com/openshift/origin/pkg/dockerregistry"
31+
"github.com/openshift/origin/pkg/generate"
3132
"github.com/openshift/origin/pkg/generate/app"
3233
"github.com/openshift/origin/pkg/generate/dockerfile"
34+
"github.com/openshift/origin/pkg/generate/jenkinsfile"
3335
"github.com/openshift/origin/pkg/generate/source"
3436
imageapi "github.com/openshift/origin/pkg/image/api"
3537
outil "github.com/openshift/origin/pkg/util"
@@ -44,10 +46,6 @@ const (
4446
GeneratedByNewBuild = "OpenShiftNewBuild"
4547
)
4648

47-
// ErrNoDockerfileDetected is the error returned when the requested build strategy is Docker
48-
// and no Dockerfile is detected in the repository.
49-
var ErrNoDockerfileDetected = errors.New("No Dockerfile was found in the repository and the requested build strategy is 'docker'")
50-
5149
// GenerationInputs control how new-app creates output
5250
// TODO: split these into finer grained structs
5351
type GenerationInputs struct {
@@ -59,7 +57,7 @@ type GenerationInputs struct {
5957

6058
InsecureRegistry bool
6159

62-
Strategy string
60+
Strategy generate.Strategy
6361

6462
Name string
6563
To string
@@ -161,8 +159,9 @@ func NewAppConfig() *AppConfig {
161159
return &AppConfig{
162160
Resolvers: Resolvers{
163161
Detector: app.SourceRepositoryEnumerator{
164-
Detectors: source.DefaultDetectors,
165-
Tester: dockerfile.NewTester(),
162+
Detectors: source.DefaultDetectors,
163+
DockerfileTester: dockerfile.NewTester(),
164+
JenkinsfileTester: jenkinsfile.NewTester(),
166165
},
167166
},
168167
}
@@ -249,18 +248,18 @@ func (c *AppConfig) AddArguments(args []string) []string {
249248
}
250249

251250
// validateBuilders confirms that all images associated with components that are to be built,
252-
// are builders (or we're using a docker strategy).
251+
// are builders (or we're using a non-source strategy).
253252
func (c *AppConfig) validateBuilders(components app.ComponentReferences) error {
254-
if len(c.Strategy) != 0 {
253+
if c.Strategy != generate.StrategyUnspecified {
255254
return nil
256255
}
257256
errs := []error{}
258257
for _, ref := range components {
259258
input := ref.Input()
260259
// if we're supposed to build this thing, and the image/imagestream we've matched it to did not come from an explicit CLI argument,
261-
// and the image/imagestream we matched to is not explicitly an s2i builder, and we're not doing a docker-type build, warn the user
260+
// and the image/imagestream we matched to is not explicitly an s2i builder, and we're doing a source-type build, warn the user
262261
// that this probably won't work and force them to declare their intention explicitly.
263-
if input.ExpectToBuild && input.ResolvedMatch != nil && !app.IsBuilderMatch(input.ResolvedMatch) && input.Uses != nil && !input.Uses.IsDockerBuild() {
262+
if input.ExpectToBuild && input.ResolvedMatch != nil && !app.IsBuilderMatch(input.ResolvedMatch) && input.Uses != nil && input.Uses.GetStrategy() == generate.StrategySource {
264263
errs = append(errs, fmt.Errorf("the image match %q for source repository %q does not appear to be a source-to-image builder.\n\n- to attempt to use this image as a source builder, pass \"--strategy=source\"\n- to use it as a base image for a Docker build, pass \"--strategy=docker\"", input.ResolvedMatch.Name, input.Uses))
265264
continue
266265
}
@@ -275,13 +274,6 @@ func validateEnforcedName(name string) error {
275274
return nil
276275
}
277276

278-
func validateStrategyName(name string) error {
279-
if name != "docker" && name != "source" {
280-
return fmt.Errorf("invalid strategy: %s. Must be 'docker' or 'source'.", name)
281-
}
282-
return nil
283-
}
284-
285277
func validateOutputImageReference(ref string) error {
286278
if _, err := imageapi.ParseDockerImageReference(ref); err != nil {
287279
return fmt.Errorf("invalid output image reference: %s", ref)
@@ -304,7 +296,7 @@ func (c *AppConfig) buildPipelines(components app.ComponentReferences, environme
304296
switch {
305297
case refInput.ExpectToBuild:
306298
glog.V(4).Infof("will add %q secrets into a build for a source build of %q", strings.Join(c.Secrets, ","), refInput.Uses)
307-
if err := refInput.Uses.AddBuildSecrets(c.Secrets, refInput.Uses.IsDockerBuild()); err != nil {
299+
if err := refInput.Uses.AddBuildSecrets(c.Secrets); err != nil {
308300
return nil, fmt.Errorf("unable to add build secrets %q: %v", strings.Join(c.Secrets, ","), err)
309301
}
310302

@@ -317,7 +309,7 @@ func (c *AppConfig) buildPipelines(components app.ComponentReferences, environme
317309
if err != nil {
318310
return nil, fmt.Errorf("can't build %q: %v", from, err)
319311
}
320-
if !inputImage.AsImageStream && from != "scratch" {
312+
if !inputImage.AsImageStream && from != "scratch" && (refInput.Uses == nil || refInput.Uses.GetStrategy() != generate.StrategyPipeline) {
321313
msg := "Could not find an image stream match for %q. Make sure that a Docker image with that tag is available on the node for the build to succeed."
322314
glog.Warningf(msg, from)
323315
}
@@ -351,6 +343,12 @@ func (c *AppConfig) buildPipelines(components app.ComponentReferences, environme
351343
if c.NoOutput {
352344
pipeline.Build.Output = nil
353345
}
346+
if refInput.Uses != nil && refInput.Uses.GetStrategy() == generate.StrategyPipeline {
347+
pipeline.Build.Output = nil
348+
pipeline.Deployment = nil
349+
pipeline.Image = nil
350+
pipeline.InputImage = nil
351+
}
354352
common = append(common, pipeline)
355353
if err := common.Reduce(); err != nil {
356354
return nil, fmt.Errorf("can't create a pipeline from %s: %v", common, err)
@@ -613,12 +611,6 @@ func (c *AppConfig) Run() (*AppResult, error) {
613611
}
614612
}
615613

616-
if len(c.Strategy) > 0 {
617-
if err := validateStrategyName(c.Strategy); err != nil {
618-
return nil, err
619-
}
620-
}
621-
622614
if err := optionallyValidateExposedPorts(c, repositories); err != nil {
623615
return nil, err
624616
}
@@ -901,7 +893,7 @@ func optionallyValidateExposedPorts(config *AppConfig, repositories app.SourceRe
901893
return nil
902894
}
903895

904-
if len(config.Strategy) > 0 && config.Strategy != "docker" {
896+
if config.Strategy != generate.StrategyUnspecified && config.Strategy != generate.StrategyDocker {
905897
return nil
906898
}
907899

pkg/generate/app/cmd/newapp_test.go

+9-9
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ import (
1515

1616
buildapi "github.com/openshift/origin/pkg/build/api"
1717
client "github.com/openshift/origin/pkg/client/testclient"
18+
"github.com/openshift/origin/pkg/generate"
1819
"github.com/openshift/origin/pkg/generate/app"
1920
image "github.com/openshift/origin/pkg/image/api"
2021
templateapi "github.com/openshift/origin/pkg/template/api"
@@ -339,7 +340,7 @@ func mockSourceRepositories(t *testing.T, file string) []*app.SourceRepository {
339340
"https://github.com/openshift/ruby-hello-world.git",
340341
file,
341342
} {
342-
s, err := app.NewSourceRepository(location)
343+
s, err := app.NewSourceRepository(location, generate.StrategySource)
343344
if err != nil {
344345
t.Fatal(err)
345346
}
@@ -356,11 +357,10 @@ func TestBuildPipelinesWithUnresolvedImage(t *testing.T) {
356357
t.Fatal(err)
357358
}
358359

359-
sourceRepo, err := app.NewSourceRepository("https://github.com/foo/bar.git")
360+
sourceRepo, err := app.NewSourceRepository("https://github.com/foo/bar.git", generate.StrategyDocker)
360361
if err != nil {
361362
t.Fatal(err)
362363
}
363-
sourceRepo.BuildWithDocker()
364364
sourceRepo.SetInfo(&app.SourceRepositoryInfo{
365365
Dockerfile: dockerFile,
366366
})
@@ -509,15 +509,15 @@ func TestBuildOutputCycleWithFollowingTag(t *testing.T) {
509509

510510
func TestAllowedNonNumericExposedPorts(t *testing.T) {
511511
tests := []struct {
512-
strategy string
512+
strategy generate.Strategy
513513
allowNonNumericPorts bool
514514
}{
515515
{
516-
strategy: "",
516+
strategy: generate.StrategyUnspecified,
517517
allowNonNumericPorts: true,
518518
},
519519
{
520-
strategy: "source",
520+
strategy: generate.StrategySource,
521521
allowNonNumericPorts: false,
522522
},
523523
}
@@ -543,15 +543,15 @@ func TestAllowedNonNumericExposedPorts(t *testing.T) {
543543

544544
func TestDisallowedNonNumericExposedPorts(t *testing.T) {
545545
tests := []struct {
546-
strategy string
546+
strategy generate.Strategy
547547
allowNonNumericPorts bool
548548
}{
549549
{
550-
strategy: "",
550+
strategy: generate.StrategyUnspecified,
551551
allowNonNumericPorts: false,
552552
},
553553
{
554-
strategy: "docker",
554+
strategy: generate.StrategyDocker,
555555
allowNonNumericPorts: false,
556556
},
557557
}

0 commit comments

Comments
 (0)