-
Notifications
You must be signed in to change notification settings - Fork 11
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
CR-15313-invalid-tunnel-url #632
Conversation
"Installing demo resources": strconv.FormatBool(installationOpts.InstallDemoResources), | ||
} | ||
|
||
if installationOpts.AccessMode == platmodel.AccessModeTunnel { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
display the correct summary
@@ -339,6 +329,14 @@ func runtimeInstallCommandPreRunHandler(cmd *cobra.Command, opts *RuntimeInstall | |||
if opts.AccessMode == platmodel.AccessModeTunnel { | |||
handleCliStep(reporter.InstallStepPreCheckEnsureIngressClass, "-skipped (ingressless)-", err, true, false) | |||
handleCliStep(reporter.InstallStepPreCheckEnsureIngressHost, "-skipped (ingressless)-", err, true, false) | |||
opts.featuresToInstall = append(opts.featuresToInstall, runtime.InstallFeatureIngressless) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
create tunnel ingressHost after runtimeName was supplied by user
@@ -387,6 +385,10 @@ func runtimeInstallCommandPreRunHandler(cmd *cobra.Command, opts *RuntimeInstall | |||
log.G(ctx).Infof("using repo '%s' as shared config repo for this account", sharedConfigRepo) | |||
} | |||
|
|||
if opts.runtimeDef == "" { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just feels better located in here
No description provided.