Documentation ¶
Overview ¶
The chroot package is able to create an Amazon AMI without requiring the launch of a new instance for every build. It does this by attaching and mounting the root volume of another AMI and chrooting into that directory. It then creates an AMI from that attached drive.
Index ¶
- Constants
- func AvailableDevice() (string, error)
- type Builder
- type Cleanup
- type Communicator
- type Config
- type StepAttachVolume
- type StepChrootProvision
- type StepCopyFiles
- type StepCreateVolume
- type StepEarlyCleanup
- type StepEarlyUnflock
- type StepFlock
- type StepInstanceInfo
- type StepMountDevice
- type StepMountExtra
- type StepPrepareDevice
- type StepRegisterAMI
- type StepSnapshot
- type StepSourceAMIInfo
Constants ¶
const BuilderId = "mitchellh.amazon.chroot"
The unique ID for this builder
const LOCK_EX = 2
See: http://linux.die.net/include/sys/file.h
const LOCK_NB = 4
const LOCK_UN = 8
Variables ¶
This section is empty.
Functions ¶
func AvailableDevice ¶
AvailableDevice finds an available device and returns it. Note that you should externally hold a flock or something in order to guarantee that this device is available across processes.
Types ¶
type Communicator ¶
type Communicator struct {
Chroot string
}
Communicator is a special communicator that works by executing commands locally but within a chroot.
type Config ¶
type Config struct { common.PackerConfig `mapstructure:",squash"` awscommon.AccessConfig `mapstructure:",squash"` awscommon.AMIConfig `mapstructure:",squash"` ChrootMounts [][]string `mapstructure:"chroot_mounts"` CopyFiles []string `mapstructure:"copy_files"` DevicePath string `mapstructure:"device_path"` MountCommand string `mapstructure:"mount_command"` MountPath string `mapstructure:"mount_path"` SourceAmi string `mapstructure:"source_ami"` UnmountCommand string `mapstructure:"unmount_command"` // contains filtered or unexported fields }
Config is the configuration that is chained through the steps and settable from the template.
type StepAttachVolume ¶
type StepAttachVolume struct {
// contains filtered or unexported fields
}
StepAttachVolume attaches the previously created volume to an available device location.
Produces:
device string - The location where the volume was attached. attach_cleanup CleanupFunc
func (*StepAttachVolume) Cleanup ¶
func (s *StepAttachVolume) Cleanup(state multistep.StateBag)
func (*StepAttachVolume) CleanupFunc ¶
func (s *StepAttachVolume) CleanupFunc(state multistep.StateBag) error
func (*StepAttachVolume) Run ¶
func (s *StepAttachVolume) Run(state multistep.StateBag) multistep.StepAction
type StepChrootProvision ¶
type StepChrootProvision struct {
// contains filtered or unexported fields
}
StepChrootProvision provisions the instance within a chroot.
func (*StepChrootProvision) Cleanup ¶
func (s *StepChrootProvision) Cleanup(state multistep.StateBag)
func (*StepChrootProvision) Run ¶
func (s *StepChrootProvision) Run(state multistep.StateBag) multistep.StepAction
type StepCopyFiles ¶
type StepCopyFiles struct {
// contains filtered or unexported fields
}
StepCopyFiles copies some files from the host into the chroot environment.
Produces:
copy_files_cleanup CleanupFunc - A function to clean up the copied files early.
func (*StepCopyFiles) Cleanup ¶
func (s *StepCopyFiles) Cleanup(state multistep.StateBag)
func (*StepCopyFiles) CleanupFunc ¶
func (s *StepCopyFiles) CleanupFunc(multistep.StateBag) error
func (*StepCopyFiles) Run ¶
func (s *StepCopyFiles) Run(state multistep.StateBag) multistep.StepAction
type StepCreateVolume ¶
type StepCreateVolume struct {
// contains filtered or unexported fields
}
StepCreateVolume creates a new volume from the snapshot of the root device of the AMI.
Produces:
volume_id string - The ID of the created volume
func (*StepCreateVolume) Cleanup ¶
func (s *StepCreateVolume) Cleanup(state multistep.StateBag)
func (*StepCreateVolume) Run ¶
func (s *StepCreateVolume) Run(state multistep.StateBag) multistep.StepAction
type StepEarlyCleanup ¶
type StepEarlyCleanup struct{}
StepEarlyCleanup performs some of the cleanup steps early in order to prepare for snapshotting and creating an AMI.
func (*StepEarlyCleanup) Cleanup ¶
func (s *StepEarlyCleanup) Cleanup(state multistep.StateBag)
func (*StepEarlyCleanup) Run ¶
func (s *StepEarlyCleanup) Run(state multistep.StateBag) multistep.StepAction
type StepEarlyUnflock ¶
type StepEarlyUnflock struct{}
StepEarlyUnflock unlocks the flock.
func (*StepEarlyUnflock) Cleanup ¶
func (s *StepEarlyUnflock) Cleanup(state multistep.StateBag)
func (*StepEarlyUnflock) Run ¶
func (s *StepEarlyUnflock) Run(state multistep.StateBag) multistep.StepAction
type StepFlock ¶
type StepFlock struct {
// contains filtered or unexported fields
}
StepFlock provisions the instance within a chroot.
Produces:
flock_cleanup Cleanup - To perform early cleanup
type StepInstanceInfo ¶
type StepInstanceInfo struct{}
StepInstanceInfo verifies that this builder is running on an EC2 instance.
func (*StepInstanceInfo) Cleanup ¶
func (s *StepInstanceInfo) Cleanup(multistep.StateBag)
func (*StepInstanceInfo) Run ¶
func (s *StepInstanceInfo) Run(state multistep.StateBag) multistep.StepAction
type StepMountDevice ¶
type StepMountDevice struct {
// contains filtered or unexported fields
}
StepMountDevice mounts the attached device.
Produces:
mount_path string - The location where the volume was mounted. mount_device_cleanup CleanupFunc - To perform early cleanup
func (*StepMountDevice) Cleanup ¶
func (s *StepMountDevice) Cleanup(state multistep.StateBag)
func (*StepMountDevice) CleanupFunc ¶
func (s *StepMountDevice) CleanupFunc(state multistep.StateBag) error
func (*StepMountDevice) Run ¶
func (s *StepMountDevice) Run(state multistep.StateBag) multistep.StepAction
type StepMountExtra ¶
type StepMountExtra struct {
// contains filtered or unexported fields
}
StepMountExtra mounts the attached device.
Produces:
mount_extra_cleanup CleanupFunc - To perform early cleanup
func (*StepMountExtra) Cleanup ¶
func (s *StepMountExtra) Cleanup(state multistep.StateBag)
func (*StepMountExtra) CleanupFunc ¶
func (s *StepMountExtra) CleanupFunc(state multistep.StateBag) error
func (*StepMountExtra) Run ¶
func (s *StepMountExtra) Run(state multistep.StateBag) multistep.StepAction
type StepPrepareDevice ¶
type StepPrepareDevice struct {
// contains filtered or unexported fields
}
StepPrepareDevice finds an available device and sets it.
func (*StepPrepareDevice) Cleanup ¶
func (s *StepPrepareDevice) Cleanup(state multistep.StateBag)
func (*StepPrepareDevice) Run ¶
func (s *StepPrepareDevice) Run(state multistep.StateBag) multistep.StepAction
type StepRegisterAMI ¶
type StepRegisterAMI struct{}
StepRegisterAMI creates the AMI.
func (*StepRegisterAMI) Cleanup ¶
func (s *StepRegisterAMI) Cleanup(state multistep.StateBag)
func (*StepRegisterAMI) Run ¶
func (s *StepRegisterAMI) Run(state multistep.StateBag) multistep.StepAction
type StepSnapshot ¶
type StepSnapshot struct {
// contains filtered or unexported fields
}
StepSnapshot creates a snapshot of the created volume.
Produces:
snapshot_id string - ID of the created snapshot
func (*StepSnapshot) Cleanup ¶
func (s *StepSnapshot) Cleanup(state multistep.StateBag)
func (*StepSnapshot) Run ¶
func (s *StepSnapshot) Run(state multistep.StateBag) multistep.StepAction
type StepSourceAMIInfo ¶
type StepSourceAMIInfo struct{}
StepSourceAMIInfo extracts critical information from the source AMI that is used throughout the AMI creation process.
Produces:
source_image *ec2.Image - the source AMI info
func (*StepSourceAMIInfo) Cleanup ¶
func (s *StepSourceAMIInfo) Cleanup(multistep.StateBag)
func (*StepSourceAMIInfo) Run ¶
func (s *StepSourceAMIInfo) Run(state multistep.StateBag) multistep.StepAction
Source Files ¶
- builder.go
- cleanup.go
- communicator.go
- device.go
- lockfile_unix.go
- step_attach_volume.go
- step_chroot_provision.go
- step_copy_files.go
- step_create_volume.go
- step_early_cleanup.go
- step_early_unflock.go
- step_flock.go
- step_instance_info.go
- step_mount_device.go
- step_mount_extra.go
- step_prepare_device.go
- step_register_ami.go
- step_snapshot.go
- step_source_ami_info.go