Documentation
¶
Index ¶
Constants ¶
View Source
const ( // TableOutputFormat table TableOutputFormat = "table" // YamlOutputFormat yaml YamlOutputFormat = "yaml" )
Variables ¶
This section is empty.
Functions ¶
Types ¶
type CommandOptions ¶
type CommandOptions struct { All bool Labels string Name string Namespace string IsoURL string Timeout time.Duration Inventory ifc.Inventory }
CommandOptions is used to store common variables from cmd flags for baremetal command group
func (*CommandOptions) BMHAction ¶
func (o *CommandOptions) BMHAction(op ifc.BaremetalOperation) error
BMHAction performs an action against BaremetalHost objects
func (*CommandOptions) PowerStatus ¶
func (o *CommandOptions) PowerStatus(w io.Writer) error
PowerStatus get power status of the single host
func (*CommandOptions) RemoteDirect ¶
func (o *CommandOptions) RemoteDirect() error
RemoteDirect perform RemoteDirect operation against single host
type ErrInvalidOptions ¶
type ErrInvalidOptions struct {
Message string
}
ErrInvalidOptions is returned when incompatible flags are
func (ErrInvalidOptions) Error ¶
func (e ErrInvalidOptions) Error() string
type Inventory ¶
Inventory implementation of the interface
func (Inventory) BaremetalInventory ¶
func (i Inventory) BaremetalInventory() (ifc.BaremetalInventory, error)
BaremetalInventory implementation of the interface
type ListHostsCommand ¶
type ListHostsCommand struct { Writer io.Writer Options *CommandOptions OutputFormat string }
ListHostsCommand is used to store common variables from cmd flags for list-hosts command
func NewListHostsCommand ¶
func NewListHostsCommand(options *CommandOptions) *ListHostsCommand
NewListHostsCommand ListHostsCommand constructor
func (*ListHostsCommand) RunE ¶
func (l *ListHostsCommand) RunE() error
RunE method returns list of hosts from BaremetalInventory
Click to show internal directories.
Click to hide internal directories.