diff --git a/cli/cmd/cluster_port.go b/cli/cmd/cluster_port.go index 4720c331..90481d34 100644 --- a/cli/cmd/cluster_port.go +++ b/cli/cmd/cluster_port.go @@ -8,7 +8,7 @@ func (r *runners) InitClusterPort(parent *cobra.Command) *cobra.Command { cmd := &cobra.Command{ Use: "port", SilenceUsage: true, - Hidden: true, // this feature is not fully implemented and controlled behind a feature toggle in the api until ready + Hidden: false, } parent.AddCommand(cmd) diff --git a/cli/cmd/cluster_port_expose.go b/cli/cmd/cluster_port_expose.go index 2820bfb7..64db7394 100644 --- a/cli/cmd/cluster_port_expose.go +++ b/cli/cmd/cluster_port_expose.go @@ -37,7 +37,7 @@ func (r *runners) InitClusterPortExpose(parent *cobra.Command) *cobra.Command { if err != nil { panic(err) } - cmd.Flags().StringSliceVar(&r.args.clusterExposePortProtocols, "protocol", []string{"http", "https"}, `Protocol to expose (valid values are "http" and "https")`) + cmd.Flags().StringSliceVar(&r.args.clusterExposePortProtocols, "protocol", []string{"http", "https"}, `Protocol to expose (valid values are "http", "https", "ws" and "wss")`) cmd.Flags().BoolVar(&r.args.clusterExposePortIsWildcard, "wildcard", false, "Create a wildcard DNS entry and TLS certificate for this port") cmd.Flags().StringVar(&r.outputFormat, "output", "table", "The output format to use. One of: json|table|wide (default: table)")