You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -155,6 +158,7 @@ func NewCmdNewApplication(fullName string, f *clientcmd.Factory, out io.Writer)
155
158
cmd.Flags().BoolVar(&config.AllowMissingImages, "allow-missing-images", false, "If true, indicates that referenced Docker images that cannot be found locally or in a registry should still be used.")
156
159
cmd.Flags().BoolVar(&config.AllowSecretUse, "grant-install-rights", false, "If true, a component that requires access to your account may use your token to install software into your project. Only grant images you trust the right to run with your token.")
157
160
cmd.Flags().BoolVar(&config.SkipGeneration, "no-install", false, "Do not attempt to run images that describe themselves as being installable")
161
+
cmd.Flags().BoolVar(&config.DryRun, "dry-run", false, "If true, do not actually create resources.")
158
162
159
163
// TODO AddPrinterFlags disabled so that it doesn't conflict with our own "template" flag.
160
164
// Need a better solution.
@@ -170,10 +174,15 @@ func NewCmdNewApplication(fullName string, f *clientcmd.Factory, out io.Writer)
170
174
// RunNewApplication contains all the necessary functionality for the OpenShift cli new-app command
171
175
funcRunNewApplication(fullNamestring, f*clientcmd.Factory, out io.Writer, c*cobra.Command, args []string, config*newcmd.AppConfig) error {
returnfmt.Errorf("installing %q requires that you grant the image access to run with your credentials; if you trust the provided image, include the flag --grant-install-rights", t.Match.Value)
534
+
returnfmt.Errorf(`installing %q requires that you grant the image access to run with your credentials
535
+
536
+
You can see more information about the image by adding the --dry-run flag.
537
+
If you trust the provided image, include the flag --grant-install-rights.`, t.Match.Value)
@@ -104,6 +106,7 @@ func NewCmdNewBuild(fullName string, f *clientcmd.Factory, in io.Reader, out io.
104
106
cmd.Flags().StringP("labels", "l", "", "Label to set in all generated resources.")
105
107
cmd.Flags().BoolVar(&config.AllowMissingImages, "allow-missing-images", false, "If true, indicates that referenced Docker images that cannot be found locally or in a registry should still be used.")
106
108
cmd.Flags().StringVar(&config.ContextDir, "context-dir", "", "Context directory to be used for the build.")
109
+
cmd.Flags().BoolVar(&config.DryRun, "dry-run", false, "If true, do not actually create resources.")
107
110
cmdutil.AddPrinterFlags(cmd)
108
111
109
112
returncmd
@@ -112,6 +115,7 @@ func NewCmdNewBuild(fullName string, f *clientcmd.Factory, in io.Reader, out io.
112
115
// RunNewBuild contains all the necessary functionality for the OpenShift cli new-build command
113
116
funcRunNewBuild(fullNamestring, f*clientcmd.Factory, out io.Writer, in io.Reader, c*cobra.Command, args []string, config*newcmd.AppConfig) error {
114
117
output:=cmdutil.GetFlagString(c, "output")
118
+
shortOutput:=output=="name"
115
119
116
120
ifconfig.Dockerfile=="-" {
117
121
data, err:=ioutil.ReadAll(in)
@@ -128,31 +132,57 @@ func RunNewBuild(fullName string, f *clientcmd.Factory, out io.Writer, in io.Rea
0 commit comments