From d0e96e16e48701df372dc9f7c99a436b3d3ee575 Mon Sep 17 00:00:00 2001 From: Manabu McCloskey Date: Tue, 11 Jun 2024 16:48:29 +0000 Subject: [PATCH] make flag description more clear Signed-off-by: Manabu McCloskey --- pkg/cmd/create/root.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cmd/create/root.go b/pkg/cmd/create/root.go index 6408050c..00615de4 100644 --- a/pkg/cmd/create/root.go +++ b/pkg/cmd/create/root.go @@ -52,7 +52,7 @@ func init() { // in-cluster resources related flags CreateCmd.PersistentFlags().StringVar(&host, "host", "cnoe.localtest.me", "Host name to access resources in this cluster.") - CreateCmd.PersistentFlags().StringVar(&ingressHost, "ingress-host-name", "", "Host name used by ingresses. Useful when you have another proxy infront of idpbuilder.") + CreateCmd.PersistentFlags().StringVar(&ingressHost, "ingress-host-name", "", "Host name used by ingresses. Useful when you have another proxy in front of ingress-nginx that idpbuilder provisions.") CreateCmd.PersistentFlags().StringVar(&protocol, "protocol", "https", "Protocol to use to access web UIs. http or https.") CreateCmd.PersistentFlags().StringVar(&port, "port", "8443", "Port number under which idpBuilder tools are accessible.") CreateCmd.PersistentFlags().BoolVar(&pathRouting, "use-path-routing", false, "When set to true, web UIs are exposed under single domain name.")