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
3d60bfb3
Commit
3d60bfb3
authored
Jan 02, 2014
by
Matthew McKeen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add docker-import post-processor.
Implemented initial working version of Docker image importing code. #774
parent
1f961a7d
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
174 additions
and
2 deletions
+174
-2
config.go
config.go
+2
-1
plugin/post-processor-docker-import/main.go
plugin/post-processor-docker-import/main.go
+15
-0
plugin/post-processor-docker-import/main_test.go
plugin/post-processor-docker-import/main_test.go
+1
-0
post-processor/docker-import/post-processor.go
post-processor/docker-import/post-processor.go
+155
-0
post-processor/docker-push/post-processor.go
post-processor/docker-push/post-processor.go
+1
-1
No files found.
config.go
View file @
3d60bfb3
...
...
@@ -43,7 +43,8 @@ const defaultConfig = `
"post-processors": {
"vagrant": "packer-post-processor-vagrant",
"vsphere": "packer-post-processor-vsphere",
"docker-push": "packer-post-processor-docker-push"
"docker-push": "packer-post-processor-docker-push",
"docker-import": "packer-post-processor-docker-import"
},
"provisioners": {
...
...
plugin/post-processor-docker-import/main.go
0 → 100644
View file @
3d60bfb3
package
main
import
(
"github.com/mitchellh/packer/packer/plugin"
"github.com/mitchellh/packer/post-processor/docker-import"
)
func
main
()
{
server
,
err
:=
plugin
.
Server
()
if
err
!=
nil
{
panic
(
err
)
}
server
.
RegisterPostProcessor
(
new
(
dockerimport
.
PostProcessor
))
server
.
Serve
()
}
plugin/post-processor-docker-import/main_test.go
0 → 100644
View file @
3d60bfb3
package
main
post-processor/docker-import/post-processor.go
0 → 100644
View file @
3d60bfb3
package
dockerimport
import
(
"fmt"
"github.com/mitchellh/packer/common"
"github.com/mitchellh/packer/packer"
"io"
"os"
"os/exec"
)
type
Config
struct
{
common
.
PackerConfig
`mapstructure:",squash"`
Repository
string
`mapstructure:"repository"`
Tag
string
`mapstructure:"tag"`
Dockerfile
string
`mapstructure:"dockerfile"`
tpl
*
packer
.
ConfigTemplate
}
type
PostProcessor
struct
{
config
Config
}
func
(
p
*
PostProcessor
)
Configure
(
raws
...
interface
{})
error
{
_
,
err
:=
common
.
DecodeConfig
(
&
p
.
config
,
raws
...
)
if
err
!=
nil
{
return
err
}
p
.
config
.
tpl
,
err
=
packer
.
NewConfigTemplate
()
if
err
!=
nil
{
return
err
}
p
.
config
.
tpl
.
UserVars
=
p
.
config
.
PackerUserVars
// Accumulate any errors
errs
:=
new
(
packer
.
MultiError
)
templates
:=
map
[
string
]
*
string
{
"repository"
:
&
p
.
config
.
Repository
,
}
for
key
,
ptr
:=
range
templates
{
if
*
ptr
==
""
{
errs
=
packer
.
MultiErrorAppend
(
errs
,
fmt
.
Errorf
(
"%s must be set"
,
key
))
}
*
ptr
,
err
=
p
.
config
.
tpl
.
Process
(
*
ptr
,
nil
)
if
err
!=
nil
{
errs
=
packer
.
MultiErrorAppend
(
errs
,
fmt
.
Errorf
(
"Error processing %s: %s"
,
key
,
err
))
}
}
if
len
(
errs
.
Errors
)
>
0
{
return
errs
}
return
nil
}
func
(
p
*
PostProcessor
)
PostProcess
(
ui
packer
.
Ui
,
artifact
packer
.
Artifact
)
(
packer
.
Artifact
,
bool
,
error
)
{
id
:=
artifact
.
Id
()
ui
.
Say
(
"Importing image: "
+
id
)
if
p
.
config
.
Tag
==
""
{
cmd
:=
exec
.
Command
(
"docker"
,
"import"
,
"-"
,
p
.
config
.
Repository
)
stdin
,
err
:=
cmd
.
StdinPipe
()
if
err
!=
nil
{
return
nil
,
false
,
err
}
// There should be only one artifact of the Docker builder
file
,
err
:=
os
.
Open
(
artifact
.
Files
()[
0
])
if
err
!=
nil
{
return
nil
,
false
,
err
}
defer
file
.
Close
()
if
err
:=
cmd
.
Start
();
err
!=
nil
{
ui
.
Say
(
"Image import failed"
)
return
nil
,
false
,
err
}
go
func
()
{
io
.
Copy
(
stdin
,
file
)
// close stdin so that program will exit
stdin
.
Close
()
}()
cmd
.
Wait
()
}
else
{
cmd
:=
exec
.
Command
(
"docker"
,
"import"
,
"-"
,
p
.
config
.
Repository
+
":"
+
p
.
config
.
Tag
)
stdin
,
err
:=
cmd
.
StdinPipe
()
if
err
!=
nil
{
return
nil
,
false
,
err
}
// There should be only one artifact of the Docker builder
file
,
err
:=
os
.
Open
(
artifact
.
Files
()[
0
])
if
err
!=
nil
{
return
nil
,
false
,
err
}
defer
file
.
Close
()
if
err
:=
cmd
.
Start
();
err
!=
nil
{
ui
.
Say
(
"Image import failed"
)
return
nil
,
false
,
err
}
go
func
()
{
io
.
Copy
(
stdin
,
file
)
// close stdin so that program will exit
stdin
.
Close
()
}()
cmd
.
Wait
()
}
// Process Dockerfile if provided
if
p
.
config
.
Dockerfile
!=
""
{
cmd
:=
exec
.
Command
(
"docker"
,
"build"
,
id
)
if
err
:=
cmd
.
Run
();
err
!=
nil
{
ui
.
Say
(
"Failed to build image: "
+
id
)
return
nil
,
false
,
err
}
// TODO implement dockerfile provisioning
}
return
nil
,
false
,
nil
}
post-processor/docker-push/post-processor.go
View file @
3d60bfb3
...
...
@@ -129,5 +129,5 @@ func (p *PostProcessor) PostProcess(ui packer.Ui, artifact packer.Artifact) (pac
return
nil
,
false
,
err
}
return
nil
,
tru
e
,
nil
return
nil
,
fals
e
,
nil
}
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