Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
packer
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kristopher Ruzic
packer
Commits
fd044982
Commit
fd044982
authored
Jun 14, 2013
by
Mitchell Hashimoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
packer: Additional comments
parent
a6194467
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
0 deletions
+11
-0
packer/build.go
packer/build.go
+3
-0
packer/builder.go
packer/builder.go
+8
-0
No files found.
packer/build.go
View file @
fd044982
...
@@ -26,6 +26,9 @@ type Build interface {
...
@@ -26,6 +26,9 @@ type Build interface {
// enabled by adding the additional key "packer_debug" to boolean
// enabled by adding the additional key "packer_debug" to boolean
// true in the configuration of the various components. This must
// true in the configuration of the various components. This must
// be called prior to Prepare.
// be called prior to Prepare.
//
// When SetDebug is set to true, parallelism between builds is
// strictly prohibited.
SetDebug
(
bool
)
SetDebug
(
bool
)
}
}
...
...
packer/builder.go
View file @
fd044982
...
@@ -2,6 +2,14 @@ package packer
...
@@ -2,6 +2,14 @@ package packer
// Implementers of Builder are responsible for actually building images
// Implementers of Builder are responsible for actually building images
// on some platform given some configuration.
// on some platform given some configuration.
//
// In addition to the documentation on Prepare above: Prepare is sometimes
// configured with a `map[string]interface{}` that has a key "packer_debug".
// This is a boolean value. If it is set to true, then the builder should
// enable a debug mode which allows builder developers and advanced users
// to introspect what is going on during a build. During debug builds,
// parallelism is strictly disabled, so it is safe to request input from
// stdin and so on.
type
Builder
interface
{
type
Builder
interface
{
// Prepare is responsible for configuring the builder and validating
// Prepare is responsible for configuring the builder and validating
// that configuration. Any setup should be done in this method. Note that
// that configuration. Any setup should be done in this method. Note that
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment