command

package
v1.8.0 Latest Latest
Warning

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

Go to latest
Published: Mar 4, 2022 License: MPL-2.0 Imports: 149 Imported by: 22

Documentation

Index

Constants

View Source
const (
	ConfigTypeJSON configType = iota // default config type
	ConfigTypeHCL2
)

Variables

View Source
var Builders = map[string]packersdk.Builder{
	"file": new(filebuilder.Builder),
	"null": new(nullbuilder.Builder),
}
View Source
var Datasources = map[string]packersdk.Datasource{
	"hcp-packer-image":     new(hcppackerimagedatasource.Datasource),
	"hcp-packer-iteration": new(hcppackeriterationdatasource.Datasource),
	"null":                 new(nulldatasource.Datasource),
}
View Source
var PASSTHROUGHS = map[string]string{}/* 103 elements not displayed */
View Source
var TiniestBuilder = strings.NewReader(`{
	"builders": [
		{
			"type":"null",
			"communicator": "none"
		}
	]
}`)
View Source
var VendoredBuilders = map[string]packersdk.Builder{
	"alicloud-ecs":        new(alicloudecsbuilder.Builder),
	"amazon-ebs":          new(amazonebsbuilder.Builder),
	"amazon-chroot":       new(amazonchrootbuilder.Builder),
	"amazon-ebssurrogate": new(amazonebssurrogatebuilder.Builder),
	"amazon-ebsvolume":    new(amazonebsvolumebuilder.Builder),
	"amazon-instance":     new(amazoninstancebuilder.Builder),
	"azure-arm":           new(azurearmbuilder.Builder),
	"azure-chroot":        new(azurechrootbuilder.Builder),
	"azure-dtl":           new(azuredtlbuilder.Builder),
	"cloudstack":          new(cloudstackbuilder.Builder),
	"digitalocean":        new(digitaloceanbuilder.Builder),
	"docker":              new(dockerbuilder.Builder),
	"googlecompute":       new(googlecomputebuilder.Builder),
	"hcloud":              new(hcloudbuilder.Builder),
	"hyperv-iso":          new(hypervisobuilder.Builder),
	"hyperv-vmcx":         new(hypervvmcxbuilder.Builder),
	"hyperone":            new(hyperonebuilder.Builder),
	"jdcloud":             new(jdcloudbuilder.Builder),
	"linode":              new(linodebuilder.Builder),
	"lxc":                 new(lxcbuilder.Builder),
	"lxd":                 new(lxdbuilder.Builder),
	"ncloud":              new(ncloudbuilder.Builder),
	"oneandone":           new(oneandonebuilder.Builder),
	"openstack":           new(openstackbuilder.Builder),
	"oracle-classic":      new(oracleclassicbuilder.Builder),
	"oracle-oci":          new(oracleocibuilder.Builder),
	"profitbricks":        new(profitbricksbuilder.Builder),
	"proxmox":             new(proxmoxiso.Builder),
	"proxmox-iso":         new(proxmoxiso.Builder),
	"proxmox-clone":       new(proxmoxclone.Builder),
	"parallels-iso":       new(parallelsisobuilder.Builder),
	"parallels-pvm":       new(parallelspvmbuilder.Builder),
	"qemu":                new(qemubuilder.Builder),
	"scaleway":            new(scalewaybuilder.Builder),
	"tencentcloud-cvm":    new(tencentcloudcvmbuilder.Builder),
	"triton":              new(tritonbuilder.Builder),
	"ucloud-uhost":        new(uclouduhostbuilder.Builder),
	"vagrant":             new(vagrantbuilder.Builder),
	"vsphere-clone":       new(vsphereclonebuilder.Builder),
	"vsphere-iso":         new(vsphereisobuilder.Builder),
	"virtualbox-iso":      new(virtualboxisobuilder.Builder),
	"virtualbox-ovf":      new(virtualboxovfbuilder.Builder),
	"virtualbox-vm":       new(virtualboxvmbuilder.Builder),
	"vmware-iso":          new(vmwareisobuilder.Builder),
	"vmware-vmx":          new(vmwarevmxbuilder.Builder),
	"osc-bsu":             new(oscbsubuilder.Builder),
	"osc-bsusurrogate":    new(oscbsusurrogatebuilder.Builder),
	"osc-bsuvolume":       new(oscbsuvolumebuilder.Builder),
	"osc-chroot":          new(oscchrootbuilder.Builder),
	"yandex":              new(yandexbuilder.Builder),
}

VendoredBuilders are builder components that were once bundled with the Packer core, but are now being imported from their counterpart plugin repos

View Source
var VendoredDatasources = map[string]packersdk.Datasource{
	"amazon-ami":            new(amazonamidatasource.Datasource),
	"amazon-secretsmanager": new(amazonsecretsmanagerdatasource.Datasource),
}

VendoredDatasources are datasource components that were once bundled with the Packer core, but are now being imported from their counterpart plugin repos

VendoredPostProcessors are post-processor components that were once bundled with the Packer core, but are now being imported from their counterpart plugin repos

VendoredProvisioners are provisioner components that were once bundled with the Packer core, but are now being imported from their counterpart plugin repos

Functions

This section is empty.

Types

type AmazonAmiDatasourceParser added in v1.7.0

type AmazonAmiDatasourceParser struct {
	Builders        []*template.Builder
	WithAnnotations bool
	// contains filtered or unexported fields
}

func (*AmazonAmiDatasourceParser) Parse added in v1.7.0

func (*AmazonAmiDatasourceParser) Write added in v1.7.0

func (p *AmazonAmiDatasourceParser) Write(out *bytes.Buffer)

type AmazonSecretsDatasourceParser added in v1.7.0

type AmazonSecretsDatasourceParser struct {
	WithAnnotations bool
	// contains filtered or unexported fields
}

func (*AmazonSecretsDatasourceParser) Parse added in v1.7.0

func (*AmazonSecretsDatasourceParser) Write added in v1.7.0

type BlockParser added in v1.7.0

type BlockParser interface {
	Parse(*template.Template) error
	Write(*bytes.Buffer)
}

type BuildArgs added in v1.6.0

type BuildArgs struct {
	MetaArgs
	Color, Debug, Force, TimestampUi, MachineReadable bool
	ParallelBuilds                                    int64
	OnError                                           string
}

BuildArgs represents a parsed cli line for a `packer build`

func (*BuildArgs) AddFlagSets added in v1.6.0

func (ba *BuildArgs) AddFlagSets(flags *flag.FlagSet)

type BuildCommand

type BuildCommand struct {
	Meta
}

func (*BuildCommand) AutocompleteArgs added in v1.2.4

func (*BuildCommand) AutocompleteArgs() complete.Predictor

func (*BuildCommand) AutocompleteFlags added in v1.2.4

func (*BuildCommand) AutocompleteFlags() complete.Flags

func (*BuildCommand) Help

func (*BuildCommand) Help() string

func (*BuildCommand) ParseArgs added in v1.4.1

func (c *BuildCommand) ParseArgs(args []string) (*BuildArgs, int)

func (*BuildCommand) Run

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

func (*BuildCommand) RunContext added in v1.4.1

func (c *BuildCommand) RunContext(buildCtx context.Context, cla *BuildArgs) int

func (*BuildCommand) Synopsis

func (*BuildCommand) Synopsis() string

type BuildParser added in v1.7.0

type BuildParser struct {
	Builders        []*template.Builder
	WithAnnotations bool
	// contains filtered or unexported fields
}

func (*BuildParser) Parse added in v1.7.0

func (p *BuildParser) Parse(tpl *template.Template) error

func (*BuildParser) Write added in v1.7.0

func (p *BuildParser) Write(out *bytes.Buffer)

type ConsoleArgs added in v1.6.0

type ConsoleArgs struct {
	MetaArgs
}

ConsoleArgs represents a parsed cli line for a `packer console`

type ConsoleCommand added in v1.4.2

type ConsoleCommand struct {
	Meta
}

func (*ConsoleCommand) AutocompleteArgs added in v1.4.2

func (*ConsoleCommand) AutocompleteArgs() complete.Predictor

func (*ConsoleCommand) AutocompleteFlags added in v1.4.2

func (*ConsoleCommand) AutocompleteFlags() complete.Flags

func (*ConsoleCommand) Help added in v1.4.2

func (*ConsoleCommand) Help() string

func (*ConsoleCommand) ParseArgs added in v1.6.0

func (c *ConsoleCommand) ParseArgs(args []string) (*ConsoleArgs, int)

func (*ConsoleCommand) Run added in v1.4.2

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

func (*ConsoleCommand) RunContext added in v1.6.0

func (c *ConsoleCommand) RunContext(ctx context.Context, cla *ConsoleArgs) int

func (*ConsoleCommand) Synopsis added in v1.4.2

func (*ConsoleCommand) Synopsis() string

type CoreWrapper added in v1.6.1

type CoreWrapper struct {
	*packer.Core
}

CoreWrapper wraps a packer.Core in order to have it's Initialize func return a diagnostic.

func (*CoreWrapper) ConfiguredArtifactMetadataPublisher added in v1.7.5

func (c *CoreWrapper) ConfiguredArtifactMetadataPublisher() (*packerregistry.Bucket, hcl.Diagnostics)

ConfiguredArtifactMetadataPublisher returns a configured image bucket that can be used for publishing build image artifacts to a configured Packer Registry destination.

func (*CoreWrapper) Initialize added in v1.6.1

func (c *CoreWrapper) Initialize(_ packer.InitializeOptions) hcl.Diagnostics

func (*CoreWrapper) PluginRequirements added in v1.7.0

func (c *CoreWrapper) PluginRequirements() (plugingetter.Requirements, hcl.Diagnostics)

type FixArgs added in v1.6.0

type FixArgs struct {
	MetaArgs
	Validate bool
}

FixArgs represents a parsed cli line for a `packer fix`

func (*FixArgs) AddFlagSets added in v1.6.0

func (fa *FixArgs) AddFlagSets(flags *flag.FlagSet)

type FixCommand

type FixCommand struct {
	Meta
}

func (*FixCommand) AutocompleteArgs added in v1.2.4

func (c *FixCommand) AutocompleteArgs() complete.Predictor

func (*FixCommand) AutocompleteFlags added in v1.2.4

func (c *FixCommand) AutocompleteFlags() complete.Flags

func (*FixCommand) Help

func (*FixCommand) Help() string

func (*FixCommand) ParseArgs added in v1.6.0

func (c *FixCommand) ParseArgs(args []string) (*FixArgs, int)

func (*FixCommand) Run

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

func (*FixCommand) RunContext added in v1.6.0

func (c *FixCommand) RunContext(ctx context.Context, cla *FixArgs) int

func (*FixCommand) Synopsis

func (c *FixCommand) Synopsis() string

type FlagSetFlags added in v0.8.0

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
	FlagSetBuildFilter FlagSetFlags = 1 << iota
	FlagSetVars
)

type FormatArgs added in v1.6.6

type FormatArgs struct {
	MetaArgs
	Check, Diff, Write, Recursive bool
}

FormatArgs represents a parsed cli line for `packer fmt`

func (*FormatArgs) AddFlagSets added in v1.6.6

func (va *FormatArgs) AddFlagSets(flags *flag.FlagSet)

type FormatCommand added in v1.6.6

type FormatCommand struct {
	Meta
}

func (*FormatCommand) AutocompleteArgs added in v1.6.6

func (*FormatCommand) AutocompleteArgs() complete.Predictor

func (*FormatCommand) AutocompleteFlags added in v1.6.6

func (*FormatCommand) AutocompleteFlags() complete.Flags

func (*FormatCommand) Help added in v1.6.6

func (*FormatCommand) Help() string

func (*FormatCommand) ParseArgs added in v1.6.6

func (c *FormatCommand) ParseArgs(args []string) (*FormatArgs, int)

func (*FormatCommand) Run added in v1.6.6

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

func (*FormatCommand) RunContext added in v1.6.6

func (c *FormatCommand) RunContext(ctx context.Context, cla *FormatArgs) int

func (*FormatCommand) Synopsis added in v1.6.6

func (*FormatCommand) Synopsis() string

type HCL2UpgradeArgs added in v1.6.2

type HCL2UpgradeArgs struct {
	MetaArgs
	OutputFile      string
	WithAnnotations bool
}

HCL2UpgradeArgs represents a parsed cli line for a `packer hcl2_upgrade`

func (*HCL2UpgradeArgs) AddFlagSets added in v1.6.2

func (va *HCL2UpgradeArgs) AddFlagSets(flags *flag.FlagSet)

type HCL2UpgradeCommand added in v1.6.2

type HCL2UpgradeCommand struct {
	Meta
}

func (*HCL2UpgradeCommand) AutocompleteArgs added in v1.6.2

func (*HCL2UpgradeCommand) AutocompleteArgs() complete.Predictor

func (*HCL2UpgradeCommand) AutocompleteFlags added in v1.6.2

func (*HCL2UpgradeCommand) AutocompleteFlags() complete.Flags

func (*HCL2UpgradeCommand) Help added in v1.6.2

func (*HCL2UpgradeCommand) Help() string

func (*HCL2UpgradeCommand) ParseArgs added in v1.6.2

func (c *HCL2UpgradeCommand) ParseArgs(args []string) (*HCL2UpgradeArgs, int)

func (*HCL2UpgradeCommand) Run added in v1.6.2

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

func (*HCL2UpgradeCommand) RunContext added in v1.6.2

func (c *HCL2UpgradeCommand) RunContext(_ context.Context, cla *HCL2UpgradeArgs) int

func (*HCL2UpgradeCommand) Synopsis added in v1.6.2

func (*HCL2UpgradeCommand) Synopsis() string

type InitArgs added in v1.7.0

type InitArgs struct {
	MetaArgs
	Upgrade bool
}

InitArgs represents a parsed cli line for a `packer init <path>`

func (*InitArgs) AddFlagSets added in v1.7.0

func (ia *InitArgs) AddFlagSets(flags *flag.FlagSet)

type InitCommand added in v1.7.0

type InitCommand struct {
	Meta
}

func (*InitCommand) AutocompleteArgs added in v1.7.0

func (*InitCommand) AutocompleteArgs() complete.Predictor

func (*InitCommand) AutocompleteFlags added in v1.7.0

func (*InitCommand) AutocompleteFlags() complete.Flags

func (*InitCommand) Help added in v1.7.0

func (*InitCommand) Help() string

func (*InitCommand) ParseArgs added in v1.7.0

func (c *InitCommand) ParseArgs(args []string) (*InitArgs, int)

func (*InitCommand) Run added in v1.7.0

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

func (*InitCommand) RunContext added in v1.7.0

func (c *InitCommand) RunContext(buildCtx context.Context, cla *InitArgs) int

func (*InitCommand) Synopsis added in v1.7.0

func (*InitCommand) Synopsis() string

type InspectArgs added in v1.6.1

type InspectArgs struct {
	MetaArgs
}

InspectArgs represents a parsed cli line for a `packer inspect`

func (*InspectArgs) AddFlagSets added in v1.6.1

func (va *InspectArgs) AddFlagSets(flags *flag.FlagSet)

type InspectCommand

type InspectCommand struct {
	Meta
}

func (*InspectCommand) AutocompleteArgs added in v1.2.4

func (c *InspectCommand) AutocompleteArgs() complete.Predictor

func (*InspectCommand) AutocompleteFlags added in v1.2.4

func (c *InspectCommand) AutocompleteFlags() complete.Flags

func (*InspectCommand) Help

func (*InspectCommand) Help() string

func (*InspectCommand) ParseArgs added in v1.6.1

func (c *InspectCommand) ParseArgs(args []string) (*InspectArgs, int)

func (*InspectCommand) Run

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

func (*InspectCommand) RunContext added in v1.6.1

func (c *InspectCommand) RunContext(ctx context.Context, cla *InspectArgs) int

func (*InspectCommand) Synopsis

func (c *InspectCommand) Synopsis() string

type LocalsParser added in v1.7.0

type LocalsParser struct {
	WithAnnotations bool
	LocalsOut       []byte
}

func (*LocalsParser) Parse added in v1.7.0

func (p *LocalsParser) Parse(tpl *template.Template) error

func (*LocalsParser) Write added in v1.7.0

func (p *LocalsParser) Write(out *bytes.Buffer)

type Meta

type Meta struct {
	CoreConfig *packer.CoreConfig
	Ui         packersdk.Ui
	Version    string
}

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

func TestMetaFile added in v1.7.9

func TestMetaFile(t *testing.T) Meta

TestMetaFile creates a Meta object that includes a file builder

func (*Meta) Core added in v0.8.0

func (m *Meta) Core(tpl *template.Template, cla *MetaArgs) (*packer.Core, error)

Core returns the core for the given template given the configured CoreConfig and user variables on this Meta.

func (*Meta) FlagSet added in v0.8.0

func (m *Meta) FlagSet(n string, _ 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 build settings on the commands that don't handle builds.

func (*Meta) GetConfig added in v1.6.0

func (m *Meta) GetConfig(cla *MetaArgs) (packer.Handler, int)

func (*Meta) GetConfigFromHCL added in v1.6.0

func (m *Meta) GetConfigFromHCL(cla *MetaArgs) (*hcl2template.PackerConfig, int)

func (*Meta) GetConfigFromJSON added in v1.6.0

func (m *Meta) GetConfigFromJSON(cla *MetaArgs) (packer.Handler, int)

func (*Meta) StdinPiped added in v1.4.2

func (m *Meta) StdinPiped() bool

StdinPiped returns true if the input is piped.

func (*Meta) ValidateFlags added in v0.8.0

func (m *Meta) ValidateFlags() error

ValidateFlags should be called after parsing flags to validate the given flags

type MetaArgs added in v1.6.0

type MetaArgs struct {
	// TODO(azr): in the future, I want to allow passing multiple path to
	// merge HCL confs together; but this will probably need an RFC first.
	Path         string
	Only, Except []string
	Vars         map[string]string
	VarFiles     []string
	// set to "hcl2" to force hcl2 mode
	ConfigType configType
}

MetaArgs defines commonalities between all comands

func (*MetaArgs) AddFlagSets added in v1.6.0

func (ma *MetaArgs) AddFlagSets(fs *flag.FlagSet)

NewMetaArgs parses cli args and put possible values

func (*MetaArgs) GetConfigType added in v1.6.0

func (ma *MetaArgs) GetConfigType() (configType, error)

ConfigType tells what type of config we should use, it can return values like "hcl" or "json". Make sure Args was correctly set before.

type PackerParser added in v1.7.0

type PackerParser struct {
	WithAnnotations bool
	// contains filtered or unexported fields
}

func (*PackerParser) Parse added in v1.7.0

func (p *PackerParser) Parse(tpl *template.Template) error

func (*PackerParser) Write added in v1.7.0

func (p *PackerParser) Write(out *bytes.Buffer)

type PluginCommand added in v0.9.0

type PluginCommand struct {
	Meta
}

func (*PluginCommand) Help added in v0.9.0

func (*PluginCommand) Help() string

func (*PluginCommand) Run added in v0.9.0

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

func (*PluginCommand) Synopsis added in v0.9.0

func (c *PluginCommand) Synopsis() string

type PluginsCommand added in v1.8.0

type PluginsCommand struct {
	Meta
}

func (*PluginsCommand) Help added in v1.8.0

func (c *PluginsCommand) Help() string

func (*PluginsCommand) Run added in v1.8.0

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

func (*PluginsCommand) Synopsis added in v1.8.0

func (c *PluginsCommand) Synopsis() string

type PluginsInstallCommand added in v1.8.0

type PluginsInstallCommand struct {
	Meta
}

func (*PluginsInstallCommand) Help added in v1.8.0

func (c *PluginsInstallCommand) Help() string

func (*PluginsInstallCommand) Run added in v1.8.0

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

func (*PluginsInstallCommand) RunContext added in v1.8.0

func (c *PluginsInstallCommand) RunContext(buildCtx context.Context, args []string) int

func (*PluginsInstallCommand) Synopsis added in v1.8.0

func (c *PluginsInstallCommand) Synopsis() string

type PluginsInstalledCommand added in v1.8.0

type PluginsInstalledCommand struct {
	Meta
}

func (*PluginsInstalledCommand) Help added in v1.8.0

func (c *PluginsInstalledCommand) Help() string

func (*PluginsInstalledCommand) Run added in v1.8.0

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

func (*PluginsInstalledCommand) RunContext added in v1.8.0

func (c *PluginsInstalledCommand) RunContext(buildCtx context.Context) int

func (*PluginsInstalledCommand) Synopsis added in v1.8.0

func (c *PluginsInstalledCommand) Synopsis() string

type PluginsRemoveCommand added in v1.8.0

type PluginsRemoveCommand struct {
	Meta
}

func (*PluginsRemoveCommand) Help added in v1.8.0

func (c *PluginsRemoveCommand) Help() string

func (*PluginsRemoveCommand) Run added in v1.8.0

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

func (*PluginsRemoveCommand) RunContext added in v1.8.0

func (c *PluginsRemoveCommand) RunContext(buildCtx context.Context, args []string) int

func (*PluginsRemoveCommand) Synopsis added in v1.8.0

func (c *PluginsRemoveCommand) Synopsis() string

type PluginsRequiredArgs added in v1.8.0

type PluginsRequiredArgs struct {
	MetaArgs
}

PluginsRequiredArgs represents a parsed cli line for a `packer plugins required <path>`

type PluginsRequiredCommand added in v1.8.0

type PluginsRequiredCommand struct {
	Meta
}

func (*PluginsRequiredCommand) Help added in v1.8.0

func (c *PluginsRequiredCommand) Help() string

func (*PluginsRequiredCommand) ParseArgs added in v1.8.0

func (c *PluginsRequiredCommand) ParseArgs(args []string) (*PluginsRequiredArgs, int)

func (*PluginsRequiredCommand) Run added in v1.8.0

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

func (*PluginsRequiredCommand) RunContext added in v1.8.0

func (c *PluginsRequiredCommand) RunContext(buildCtx context.Context, cla *PluginsRequiredArgs) int

func (*PluginsRequiredCommand) Synopsis added in v1.8.0

func (c *PluginsRequiredCommand) Synopsis() string

type PostProcessorParser added in v1.7.0

type PostProcessorParser struct {
	WithAnnotations bool
	// contains filtered or unexported fields
}

func (*PostProcessorParser) Parse added in v1.7.0

func (p *PostProcessorParser) Parse(tpl *template.Template) error

func (*PostProcessorParser) Write added in v1.7.0

func (p *PostProcessorParser) Write(out *bytes.Buffer)

type ProvisionerParser added in v1.7.0

type ProvisionerParser struct {
	WithAnnotations bool
	// contains filtered or unexported fields
}

func (*ProvisionerParser) Parse added in v1.7.0

func (p *ProvisionerParser) Parse(tpl *template.Template) error

func (*ProvisionerParser) Write added in v1.7.0

func (p *ProvisionerParser) Write(out *bytes.Buffer)

type SourceParser added in v1.7.0

type SourceParser struct {
	Builders        []*template.Builder
	BuilderPlugins  packer.BuilderSet
	WithAnnotations bool
	// contains filtered or unexported fields
}

func (*SourceParser) Parse added in v1.7.0

func (p *SourceParser) Parse(tpl *template.Template) error

func (*SourceParser) Write added in v1.7.0

func (p *SourceParser) Write(out *bytes.Buffer)

type UnhandleableArgumentError added in v1.6.6

type UnhandleableArgumentError struct {
	Call           string
	Correspondance string
	Docs           string
}

func (UnhandleableArgumentError) Error added in v1.6.6

func (uc UnhandleableArgumentError) Error() string

type ValidateArgs added in v1.6.0

type ValidateArgs struct {
	MetaArgs
	SyntaxOnly bool
}

ValidateArgs represents a parsed cli line for a `packer validate`

func (*ValidateArgs) AddFlagSets added in v1.6.0

func (va *ValidateArgs) AddFlagSets(flags *flag.FlagSet)

type ValidateCommand

type ValidateCommand struct {
	Meta
}

func (*ValidateCommand) AutocompleteArgs added in v1.2.4

func (*ValidateCommand) AutocompleteArgs() complete.Predictor

func (*ValidateCommand) AutocompleteFlags added in v1.2.4

func (*ValidateCommand) AutocompleteFlags() complete.Flags

func (*ValidateCommand) Help

func (*ValidateCommand) Help() string

func (*ValidateCommand) ParseArgs added in v1.6.0

func (c *ValidateCommand) ParseArgs(args []string) (*ValidateArgs, int)

func (*ValidateCommand) Run

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

func (*ValidateCommand) RunContext added in v1.6.0

func (c *ValidateCommand) RunContext(ctx context.Context, cla *ValidateArgs) int

func (*ValidateCommand) Synopsis

func (*ValidateCommand) Synopsis() string

type VariableParser added in v1.7.0

type VariableParser struct {
	WithAnnotations bool
	// contains filtered or unexported fields
}

func (*VariableParser) Parse added in v1.7.0

func (p *VariableParser) Parse(tpl *template.Template) error

func (*VariableParser) Write added in v1.7.0

func (p *VariableParser) Write(out *bytes.Buffer)

type VersionCheckFunc

type VersionCheckFunc func() (VersionCheckInfo, error)

VersionCheckFunc is the callback called by the Version command to check if there is a new version of Packer.

type VersionCheckInfo

type VersionCheckInfo struct {
	Outdated bool
	Latest   string
	Alerts   []string
}

VersionCheckInfo is the return value for the VersionCheckFunc callback and tells the Version command information about the latest version of Packer.

type VersionCommand

type VersionCommand struct {
	Meta

	CheckFunc VersionCheckFunc
}

VersionCommand is a Command implementation prints the version.

func (*VersionCommand) Help

func (c *VersionCommand) Help() string

func (*VersionCommand) Run

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

func (*VersionCommand) Synopsis

func (c *VersionCommand) Synopsis() string

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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