@@ -523,14 +523,14 @@ type AppResult struct {
523
523
}
524
524
525
525
// RunAll executes the provided config to generate all objects.
526
- func (c * AppConfig ) RunAll (out io.Writer ) (* AppResult , error ) {
527
- return c .run (out , app.Acceptors {app .NewAcceptUnique (c .typer ), app .AcceptNew })
526
+ func (c * AppConfig ) RunAll (out , errOut io.Writer ) (* AppResult , error ) {
527
+ return c .run (out , errOut , app.Acceptors {app .NewAcceptUnique (c .typer ), app .AcceptNew })
528
528
}
529
529
530
530
// RunBuilds executes the provided config to generate just builds.
531
- func (c * AppConfig ) RunBuilds (out io.Writer ) (* AppResult , error ) {
531
+ func (c * AppConfig ) RunBuilds (out , errOut io.Writer ) (* AppResult , error ) {
532
532
bcAcceptor := app .NewAcceptBuildConfigs (c .typer )
533
- result , err := c .run (out , app.Acceptors {bcAcceptor , app .NewAcceptUnique (c .typer ), app .AcceptNew })
533
+ result , err := c .run (out , errOut , app.Acceptors {bcAcceptor , app .NewAcceptUnique (c .typer ), app .AcceptNew })
534
534
if err != nil {
535
535
return nil , err
536
536
}
@@ -586,7 +586,7 @@ func makeImageStreamKey(ref kapi.ObjectReference) string {
586
586
}
587
587
588
588
// run executes the provided config applying provided acceptors.
589
- func (c * AppConfig ) run (out io.Writer , acceptors app.Acceptors ) (* AppResult , error ) {
589
+ func (c * AppConfig ) run (out , errOut io.Writer , acceptors app.Acceptors ) (* AppResult , error ) {
590
590
c .ensureDockerResolver ()
591
591
repositories , err := c .individualSourceRepositories ()
592
592
if err != nil {
@@ -641,7 +641,7 @@ func (c *AppConfig) run(out io.Writer, acceptors app.Acceptors) (*AppResult, err
641
641
}
642
642
if p .Image != nil && p .Image .HasEmptyDir {
643
643
if _ , ok := warned [p .Image .Name ]; ! ok {
644
- fmt .Fprintf (out , "NOTICE: Image %q uses an EmptyDir volume. Data in EmptyDir volumes is not persisted across deployments.\n " , p .Image .Name )
644
+ fmt .Fprintf (errOut , "NOTICE: Image %q uses an EmptyDir volume. Data in EmptyDir volumes is not persisted across deployments.\n " , p .Image .Name )
645
645
warned [p .Image .Name ] = struct {}{}
646
646
}
647
647
}
0 commit comments