command

package
v0.5.5 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 14, 2017 License: MPL-2.0 Imports: 41 Imported by: 0

Documentation

Index

Constants

View Source
const (
	HealthCritical = 2
	HealthWarn     = 1
	HealthPass     = 0
	HealthUnknown  = 3
)
View Source
const (
	// Names of environment variables used to supply various
	// config options to the Nomad CLI.
	EnvNomadAddress = "NOMAD_ADDR"
	EnvNomadRegion  = "NOMAD_REGION"
)
View Source
const (
	// DefaultInitName is the default name we use when
	// initializing the example file
	DefaultInitName = "example.nomad"
)

Variables

This section is empty.

Functions

This section is empty.

Types

type AgentCheckCommand added in v0.4.0

type AgentCheckCommand struct {
	Meta
}

func (*AgentCheckCommand) Help added in v0.4.0

func (c *AgentCheckCommand) Help() string

func (*AgentCheckCommand) Run added in v0.4.0

func (c *AgentCheckCommand) Run(args []string) int

func (*AgentCheckCommand) Synopsis added in v0.4.0

func (c *AgentCheckCommand) Synopsis() string

type AgentInfoCommand

type AgentInfoCommand struct {
	Meta
}

func (*AgentInfoCommand) Help

func (c *AgentInfoCommand) Help() string

func (*AgentInfoCommand) Run

func (c *AgentInfoCommand) Run(args []string) int

func (*AgentInfoCommand) Synopsis

func (c *AgentInfoCommand) Synopsis() string

type AllocStatusCommand

type AllocStatusCommand struct {
	Meta
	// contains filtered or unexported fields
}

func (*AllocStatusCommand) Help

func (c *AllocStatusCommand) Help() string

func (*AllocStatusCommand) Run

func (c *AllocStatusCommand) Run(args []string) int

func (*AllocStatusCommand) Synopsis

func (c *AllocStatusCommand) Synopsis() string

type ClientConfigCommand

type ClientConfigCommand struct {
	Meta
}

func (*ClientConfigCommand) Help

func (c *ClientConfigCommand) Help() string

func (*ClientConfigCommand) Run

func (c *ClientConfigCommand) Run(args []string) int

func (*ClientConfigCommand) Synopsis

func (c *ClientConfigCommand) Synopsis() string

type DataFormatter added in v0.4.1

type DataFormatter interface {
	// TransformData should return transformed string data.
	TransformData(interface{}) (string, error)
}

DataFormatter is a transformer of the data.

func DataFormat added in v0.4.1

func DataFormat(format, tmpl string) (DataFormatter, error)

DataFormat returns the data formatter specified format.

type EvalStatusCommand added in v0.4.0

type EvalStatusCommand struct {
	Meta
}

func (*EvalStatusCommand) Help added in v0.4.0

func (c *EvalStatusCommand) Help() string

func (*EvalStatusCommand) Run added in v0.4.0

func (c *EvalStatusCommand) Run(args []string) int

func (*EvalStatusCommand) Synopsis added in v0.4.0

func (c *EvalStatusCommand) Synopsis() string

type ExecutorPluginCommand added in v0.3.0

type ExecutorPluginCommand struct {
	Meta
}

func (*ExecutorPluginCommand) Help added in v0.3.0

func (e *ExecutorPluginCommand) Help() string

func (*ExecutorPluginCommand) Run added in v0.3.0

func (e *ExecutorPluginCommand) Run(args []string) int

func (*ExecutorPluginCommand) Synopsis added in v0.3.0

func (e *ExecutorPluginCommand) Synopsis() string

type FSCommand added in v0.3.0

type FSCommand struct {
	Meta
}

func (*FSCommand) Help added in v0.3.0

func (f *FSCommand) Help() string

func (*FSCommand) Run added in v0.3.0

func (f *FSCommand) Run(args []string) int

func (*FSCommand) Synopsis added in v0.3.0

func (f *FSCommand) Synopsis() string

type FlagSetFlags

type FlagSetFlags uint

FlagSetFlags is an enum to define what flags are present in the default FlagSet returned by Meta.FlagSet.

const (
	FlagSetNone    FlagSetFlags = 0
	FlagSetClient  FlagSetFlags = 1 << iota
	FlagSetDefault              = FlagSetClient
)

type InitCommand

type InitCommand struct {
	Meta
}

InitCommand generates a new job template that you can customize to your liking, like vagrant init

func (*InitCommand) Help

func (c *InitCommand) Help() string

func (*InitCommand) Run

func (c *InitCommand) Run(args []string) int

func (*InitCommand) Synopsis

func (c *InitCommand) Synopsis() string

type InspectCommand added in v0.3.2

type InspectCommand struct {
	Meta
}

func (*InspectCommand) Help added in v0.3.2

func (c *InspectCommand) Help() string

func (*InspectCommand) Run added in v0.3.2

func (c *InspectCommand) Run(args []string) int

func (*InspectCommand) Synopsis added in v0.3.2

func (c *InspectCommand) Synopsis() string

type JSONFormat added in v0.4.1

type JSONFormat struct {
}

func (*JSONFormat) TransformData added in v0.4.1

func (p *JSONFormat) TransformData(data interface{}) (string, error)

TransformData returns JSON format string data.

type JobCommand added in v0.5.3

type JobCommand struct {
	Meta
}

func (*JobCommand) Help added in v0.5.3

func (f *JobCommand) Help() string

func (*JobCommand) Run added in v0.5.3

func (f *JobCommand) Run(args []string) int

func (*JobCommand) Synopsis added in v0.5.3

func (f *JobCommand) Synopsis() string

type JobDispatchCommand added in v0.5.3

type JobDispatchCommand struct {
	Meta
}

func (*JobDispatchCommand) Help added in v0.5.3

func (c *JobDispatchCommand) Help() string

func (*JobDispatchCommand) Run added in v0.5.3

func (c *JobDispatchCommand) Run(args []string) int

func (*JobDispatchCommand) Synopsis added in v0.5.3

func (c *JobDispatchCommand) Synopsis() string

type JobGetter added in v0.4.1

type JobGetter struct {
	// contains filtered or unexported fields
}

func (*JobGetter) ApiJob added in v0.5.5

func (j *JobGetter) ApiJob(jpath string) (*api.Job, error)

StructJob returns the Job struct from jobfile.

type KeygenCommand added in v0.5.0

type KeygenCommand struct {
	Meta
}

KeygenCommand is a Command implementation that generates an encryption key for use in `nomad agent`.

func (*KeygenCommand) Help added in v0.5.0

func (c *KeygenCommand) Help() string

func (*KeygenCommand) Run added in v0.5.0

func (c *KeygenCommand) Run(_ []string) int

func (*KeygenCommand) Synopsis added in v0.5.0

func (c *KeygenCommand) Synopsis() string

type KeyringCommand added in v0.5.0

type KeyringCommand struct {
	Meta
}

KeyringCommand is a Command implementation that handles querying, installing, and removing gossip encryption keys from a keyring.

func (*KeyringCommand) Help added in v0.5.0

func (c *KeyringCommand) Help() string

func (*KeyringCommand) Run added in v0.5.0

func (c *KeyringCommand) Run(args []string) int

func (*KeyringCommand) Synopsis added in v0.5.0

func (c *KeyringCommand) Synopsis() string

type LineLimitReader added in v0.4.1

type LineLimitReader struct {
	io.ReadCloser
	// contains filtered or unexported fields
}

LineLimitReader wraps another reader and provides `tail -n` like behavior. LineLimitReader buffers up to the searchLimit and returns `-n` number of lines. After those lines have been returned, LineLimitReader streams the underlying ReadCloser

func NewLineLimitReader added in v0.4.1

func NewLineLimitReader(r io.ReadCloser, lines, searchLimit int, timeLimit time.Duration) *LineLimitReader

NewLineLimitReader takes the ReadCloser to wrap, the number of lines to find searching backwards in the first searchLimit bytes. timeLimit can optionally be specified by passing a non-zero duration. When set, the search for the last n lines is aborted if no data has been read in the duration. This can be used to flush what is had if no extra data is being received. When used, the underlying reader must not block forever and must periodically unblock even when no data has been read.

func (*LineLimitReader) Read added in v0.4.1

func (l *LineLimitReader) Read(p []byte) (n int, err error)

type LogsCommand added in v0.4.1

type LogsCommand struct {
	Meta
}

func (*LogsCommand) Help added in v0.4.1

func (l *LogsCommand) Help() string

func (*LogsCommand) Run added in v0.4.1

func (l *LogsCommand) Run(args []string) int

func (*LogsCommand) Synopsis added in v0.4.1

func (l *LogsCommand) Synopsis() string

type Meta

type Meta struct {
	Ui cli.Ui
	// contains filtered or unexported fields
}

Meta contains the meta-options and functionality that nearly every Nomad command inherits.

func (*Meta) Client

func (m *Meta) Client() (*api.Client, error)

Client is used to initialize and return a new API client using the default command line arguments and env vars.

func (*Meta) Colorize added in v0.4.0

func (m *Meta) Colorize() *colorstring.Colorize

func (*Meta) FlagSet

func (m *Meta) FlagSet(n string, fs FlagSetFlags) *flag.FlagSet

FlagSet returns a FlagSet with the common flags that every command implements. The exact behavior of FlagSet can be configured using the flags as the second parameter, for example to disable server settings on the commands that don't talk to a server.

type NodeDrainCommand

type NodeDrainCommand struct {
	Meta
}

func (*NodeDrainCommand) Help

func (c *NodeDrainCommand) Help() string

func (*NodeDrainCommand) Run

func (c *NodeDrainCommand) Run(args []string) int

func (*NodeDrainCommand) Synopsis

func (c *NodeDrainCommand) Synopsis() string

type NodeStatusCommand

type NodeStatusCommand struct {
	Meta
	// contains filtered or unexported fields
}

func (*NodeStatusCommand) Help

func (c *NodeStatusCommand) Help() string

func (*NodeStatusCommand) Run

func (c *NodeStatusCommand) Run(args []string) int

func (*NodeStatusCommand) Synopsis

func (c *NodeStatusCommand) Synopsis() string

type OperatorCommand added in v0.5.5

type OperatorCommand struct {
	Meta
}

func (*OperatorCommand) Help added in v0.5.5

func (f *OperatorCommand) Help() string

func (*OperatorCommand) Run added in v0.5.5

func (f *OperatorCommand) Run(args []string) int

func (*OperatorCommand) Synopsis added in v0.5.5

func (f *OperatorCommand) Synopsis() string

type OperatorRaftCommand added in v0.5.5

type OperatorRaftCommand struct {
	Meta
}

func (*OperatorRaftCommand) Help added in v0.5.5

func (c *OperatorRaftCommand) Help() string

func (*OperatorRaftCommand) Run added in v0.5.5

func (c *OperatorRaftCommand) Run(args []string) int

func (*OperatorRaftCommand) Synopsis added in v0.5.5

func (c *OperatorRaftCommand) Synopsis() string

type OperatorRaftListCommand added in v0.5.5

type OperatorRaftListCommand struct {
	Meta
}

func (*OperatorRaftListCommand) Help added in v0.5.5

func (c *OperatorRaftListCommand) Help() string

func (*OperatorRaftListCommand) Run added in v0.5.5

func (c *OperatorRaftListCommand) Run(args []string) int

func (*OperatorRaftListCommand) Synopsis added in v0.5.5

func (c *OperatorRaftListCommand) Synopsis() string

type OperatorRaftRemoveCommand added in v0.5.5

type OperatorRaftRemoveCommand struct {
	Meta
}

func (*OperatorRaftRemoveCommand) Help added in v0.5.5

func (*OperatorRaftRemoveCommand) Run added in v0.5.5

func (c *OperatorRaftRemoveCommand) Run(args []string) int

func (*OperatorRaftRemoveCommand) Synopsis added in v0.5.5

func (c *OperatorRaftRemoveCommand) Synopsis() string

type PlanCommand added in v0.4.0

type PlanCommand struct {
	Meta
	JobGetter
	// contains filtered or unexported fields
}

func (*PlanCommand) Help added in v0.4.0

func (c *PlanCommand) Help() string

func (*PlanCommand) Run added in v0.4.0

func (c *PlanCommand) Run(args []string) int

func (*PlanCommand) Synopsis added in v0.4.0

func (c *PlanCommand) Synopsis() string

type RunCommand

type RunCommand struct {
	Meta
	JobGetter
}

func (*RunCommand) Help

func (c *RunCommand) Help() string

func (*RunCommand) Run

func (c *RunCommand) Run(args []string) int

func (*RunCommand) Synopsis

func (c *RunCommand) Synopsis() string

type ServerForceLeaveCommand

type ServerForceLeaveCommand struct {
	Meta
}

func (*ServerForceLeaveCommand) Help

func (c *ServerForceLeaveCommand) Help() string

func (*ServerForceLeaveCommand) Run

func (c *ServerForceLeaveCommand) Run(args []string) int

func (*ServerForceLeaveCommand) Synopsis

func (c *ServerForceLeaveCommand) Synopsis() string

type ServerJoinCommand

type ServerJoinCommand struct {
	Meta
}

func (*ServerJoinCommand) Help

func (c *ServerJoinCommand) Help() string

func (*ServerJoinCommand) Run

func (c *ServerJoinCommand) Run(args []string) int

func (*ServerJoinCommand) Synopsis

func (c *ServerJoinCommand) Synopsis() string

type ServerMembersCommand

type ServerMembersCommand struct {
	Meta
}

func (*ServerMembersCommand) Help

func (c *ServerMembersCommand) Help() string

func (*ServerMembersCommand) Run

func (c *ServerMembersCommand) Run(args []string) int

func (*ServerMembersCommand) Synopsis

func (c *ServerMembersCommand) Synopsis() string

type StatusCommand

type StatusCommand struct {
	Meta
	// contains filtered or unexported fields
}

func (*StatusCommand) Help

func (c *StatusCommand) Help() string

func (*StatusCommand) Run

func (c *StatusCommand) Run(args []string) int

func (*StatusCommand) Synopsis

func (c *StatusCommand) Synopsis() string

type StopCommand

type StopCommand struct {
	Meta
}

func (*StopCommand) Help

func (c *StopCommand) Help() string

func (*StopCommand) Run

func (c *StopCommand) Run(args []string) int

func (*StopCommand) Synopsis

func (c *StopCommand) Synopsis() string

type TemplateFormat added in v0.4.1

type TemplateFormat struct {
	// contains filtered or unexported fields
}

func (*TemplateFormat) TransformData added in v0.4.1

func (p *TemplateFormat) TransformData(data interface{}) (string, error)

TransformData returns template format string data.

type ValidateCommand

type ValidateCommand struct {
	Meta
	JobGetter
}

func (*ValidateCommand) Help

func (c *ValidateCommand) Help() string

func (*ValidateCommand) Run

func (c *ValidateCommand) Run(args []string) int

func (*ValidateCommand) Synopsis

func (c *ValidateCommand) Synopsis() string

type VersionCommand

type VersionCommand struct {
	Revision          string
	Version           string
	VersionPrerelease string
	Ui                cli.Ui
}

VersionCommand is a Command implementation prints the version.

func (*VersionCommand) Help

func (c *VersionCommand) Help() string

func (*VersionCommand) Run

func (c *VersionCommand) Run(_ []string) int

func (*VersionCommand) Synopsis

func (c *VersionCommand) Synopsis() string

Directories

Path Synopsis
consul
Package consul is used by Nomad to register all services both static services and dynamic via allocations.
Package consul is used by Nomad to register all services both static services and dynamic via allocations.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL