Documentation
¶
Index ¶
Constants ¶
const RecommendedCommandName = "debug"
RecommendedCommandName is the recommended debug command name
Variables ¶
var DebugLongDesc = `` /* 139-byte string literal not displayed */
Functions ¶
func NewCmdDebug ¶
func NewCmdInfo ¶ added in v1.1.1
NewCmdInfo implements the debug info odo command
func NewCmdPortForward ¶
NewCmdPortForward implements the port-forward odo command
Types ¶
type InfoOptions ¶ added in v1.1.1
type InfoOptions struct {
Namespace string
PortForwarder *debug.DefaultPortForwarder
*genericclioptions.Context
DevfilePath string
// contains filtered or unexported fields
}
PortForwardOptions contains all the options for running the port-forward cli command.
func NewInfoOptions ¶ added in v1.1.1
func NewInfoOptions() *InfoOptions
func (*InfoOptions) Complete ¶ added in v1.1.1
Complete completes all the required options for port-forward cmd.
func (InfoOptions) Run ¶ added in v1.1.1
func (o InfoOptions) Run() error
Run implements all the necessary functionality for port-forward cmd.
func (InfoOptions) Validate ¶ added in v1.1.1
func (o InfoOptions) Validate() error
Validate validates all the required options for port-forward cmd.
type PortForwardOptions ¶
type PortForwardOptions struct {
Namespace string
// PortPair is the combination of local and remote port in the format "local:remote"
PortPair string
PortForwarder *debug.DefaultPortForwarder
// StopChannel is used to stop port forwarding
StopChannel chan struct{}
// ReadChannel is used to receive status of port forwarding ( ready or not ready )
ReadyChannel chan struct{}
*genericclioptions.Context
DevfilePath string
// contains filtered or unexported fields
}
PortForwardOptions contains all the options for running the port-forward cli command.
func NewPortForwardOptions ¶
func NewPortForwardOptions() *PortForwardOptions
func (*PortForwardOptions) Complete ¶
Complete completes all the required options for port-forward cmd.
func (PortForwardOptions) Run ¶
func (o PortForwardOptions) Run() error
Run implements all the necessary functionality for port-forward cmd.
func (PortForwardOptions) Validate ¶
func (o PortForwardOptions) Validate() error
Validate validates all the required options for port-forward cmd.