Documentation ¶
Index ¶
Constants ¶
const ( // CodeEmbeddedBash is the linter code for when a bash -c command is found. CodeEmbeddedBash linter.Code = "exec-100" // CodeBashCArgMissingQuotes is the linter code for when a bash -c flag argument is missing the required wrapping quotes. CodeBashCArgMissingQuotes linter.Code = "exec-101" )
Variables ¶
This section is empty.
Functions ¶
func NewSchemaBox ¶
func NewSchemaBox() *packr.Box
Types ¶
type Action ¶
type Action struct { Name string Steps []Step // using UnmarshalYAML so that we don't need a custom type per action }
func (Action) GetSteps ¶
func (a Action) GetSteps() []builder.ExecutableStep
func (Action) MakeSteps ¶
func (a Action) MakeSteps() interface{}
MakeSteps builds a slice of Steps for data to be unmarshaled into.
func (Action) MarshalYAML ¶
MarshalYAML converts the action back to a YAML representation install:
exec: ... helm: ...
func (*Action) UnmarshalYAML ¶
UnmarshalYAML takes any yaml in this form ACTION: - exec: ... and puts the steps into the Action.Steps field
type Actions ¶
type Actions []Action
Actions is a set of actions, and the steps, passed from Porter.
func (*Actions) UnmarshalYAML ¶
UnmarshalYAML takes chunks of a porter.yaml file associated with this mixin and populates it on the current action set. install:
exec: ... exec: ...
upgrade:
exec: ...
type BuildInput ¶
type BuildInput struct { // Actions is all the exec actions defined in the manifest Actions Actions `yaml:"actions"` }
BuildInput represents stdin sent by porter to the build and lint commands
type ExecuteOptions ¶
type ExecuteOptions struct {
File string
}
ExecOptions represent the options for any exec command
type Instruction ¶
type Instruction struct { Description string `yaml:"description"` Command string `yaml:"command"` Arguments []string `yaml:"arguments,omitempty"` SuffixArguments []string `yaml:"suffix-arguments,omitempty"` Flags builder.Flags `yaml:"flags,omitempty"` Outputs []Output `yaml:"outputs,omitempty"` SuppressOutput bool `yaml:"suppress-output,omitempty"` }
type Mixin ¶
Exec is the logic behind the exec mixin
func (*Mixin) Execute ¶
func (m *Mixin) Execute(opts ExecuteOptions) error
func (*Mixin) PrintLintResults ¶
func (*Mixin) PrintSchema ¶
type Output ¶
type Output struct { Name string `yaml:"name"` FilePath string `yaml:"path,omitempty"` JsonPath string `yaml:"jsonPath,omitempty"` Regex string `yaml:"regex,omitempty"` }
func (Output) GetFilePath ¶
func (Output) GetJsonPath ¶
type Step ¶
type Step struct {
Instruction `yaml:"exec"`
}
func (Step) GetArguments ¶
func (Step) GetCommand ¶
func (Step) GetOutputs ¶
func (Step) GetSuffixArguments ¶ added in v0.27.2
func (Step) SuppressesOutput ¶
type TestMixin ¶
type TestMixin struct { *Mixin TestContext *context.TestContext }
func NewTestMixin ¶
NewTestMixin initializes an exec mixin, with the output buffered, and an in-memory file system.