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
6232d064
Commit
6232d064
authored
Nov 18, 2013
by
Mitchell Hashimoto
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #613 from mheidenr/master
added post-processor-vsphere
parents
1d3038dd
5f981c77
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
137 additions
and
1 deletion
+137
-1
config.go
config.go
+2
-1
plugin/post-processor-vsphere/main.go
plugin/post-processor-vsphere/main.go
+10
-0
plugin/post-processor-vsphere/main_test.go
plugin/post-processor-vsphere/main_test.go
+1
-0
post-processor/vsphere/post-processor.go
post-processor/vsphere/post-processor.go
+124
-0
No files found.
config.go
View file @
6232d064
...
...
@@ -38,7 +38,8 @@ const defaultConfig = `
},
"post-processors": {
"vagrant": "packer-post-processor-vagrant"
"vagrant": "packer-post-processor-vagrant",
"vsphere": "packer-post-processor-vsphere"
},
"provisioners": {
...
...
plugin/post-processor-vsphere/main.go
0 → 100644
View file @
6232d064
package
main
import
(
"github.com/mitchellh/packer/packer/plugin"
"github.com/mitchellh/packer/post-processor/vsphere"
)
func
main
()
{
plugin
.
ServePostProcessor
(
new
(
vsphere
.
PostProcessor
))
}
plugin/post-processor-vsphere/main_test.go
0 → 100644
View file @
6232d064
package
main
post-processor/vsphere/post-processor.go
0 → 100644
View file @
6232d064
package
vsphere
import
(
"bytes"
"fmt"
"github.com/mitchellh/packer/common"
"github.com/mitchellh/packer/packer"
"os/exec"
"strings"
)
var
builtins
=
map
[
string
]
string
{
"mitchellh.vmware"
:
"vmware"
,
}
type
Config
struct
{
common
.
PackerConfig
`mapstructure:",squash"`
Insecure
bool
`mapstructure:"insecure"`
Datacenter
string
`mapstructure:"datacenter"`
Datastore
string
`mapstructure:"datastore"`
Host
string
`mapstructure:"host"`
VMNetwork
string
`mapstructure:"vm_network"`
Password
string
`mapstructure:"password"`
PathToResoucePool
string
`mapstructure:"path_to_resouce_pool"`
Username
string
`mapstructure:"username"`
VMFolder
string
`mapstructure:"vm_folder"`
VMName
string
`mapstructure:"vm_name"`
}
type
PostProcessor
struct
{
config
Config
}
func
(
p
*
PostProcessor
)
Configure
(
raws
...
interface
{})
error
{
_
,
err
:=
common
.
DecodeConfig
(
&
p
.
config
,
raws
...
)
if
err
!=
nil
{
return
err
}
tpl
,
err
:=
packer
.
NewConfigTemplate
()
if
err
!=
nil
{
return
err
}
tpl
.
UserVars
=
p
.
config
.
PackerUserVars
// Accumulate any errors
errs
:=
new
(
packer
.
MultiError
)
program
:=
"ovftool"
_
,
erro
:=
exec
.
LookPath
(
program
)
if
erro
!=
nil
{
errs
=
packer
.
MultiErrorAppend
(
errs
,
fmt
.
Errorf
(
"Error : %s not set"
,
erro
))
}
validates
:=
map
[
string
]
*
string
{
"datacenter"
:
&
p
.
config
.
Datacenter
,
"datastore"
:
&
p
.
config
.
Datastore
,
"host"
:
&
p
.
config
.
Host
,
"vm_network"
:
&
p
.
config
.
VMNetwork
,
"password"
:
&
p
.
config
.
Password
,
"path_to_resouce_pool"
:
&
p
.
config
.
PathToResoucePool
,
"username"
:
&
p
.
config
.
Username
,
"vm_folder"
:
&
p
.
config
.
VMFolder
,
"vm_name"
:
&
p
.
config
.
VMName
,
}
for
n
:=
range
validates
{
if
*
validates
[
n
]
==
""
{
errs
=
packer
.
MultiErrorAppend
(
errs
,
fmt
.
Errorf
(
"Argument %s: not set"
,
n
))
}
}
if
len
(
errs
.
Errors
)
>
0
{
return
errs
}
return
nil
}
func
(
p
*
PostProcessor
)
PostProcess
(
ui
packer
.
Ui
,
artifact
packer
.
Artifact
)
(
packer
.
Artifact
,
bool
,
error
)
{
_
,
ok
:=
builtins
[
artifact
.
BuilderId
()]
if
!
ok
{
return
nil
,
false
,
fmt
.
Errorf
(
"Unknown artifact type, can't build box: %s"
,
artifact
.
BuilderId
())
}
vmx
:=
""
for
_
,
path
:=
range
artifact
.
Files
()
{
if
strings
.
HasSuffix
(
path
,
".vmx"
)
{
vmx
=
path
}
}
if
vmx
==
""
{
return
nil
,
false
,
fmt
.
Errorf
(
"VMX file not found"
)
}
ui
.
Message
(
fmt
.
Sprintf
(
"uploading %s to vSphere"
,
vmx
))
program
:=
"ovftool"
nossl
:=
fmt
.
Sprintf
(
"--noSSLVerify=%t"
,
p
.
config
.
Insecure
)
accepteulas
:=
"--acceptAllEulas"
name
:=
"--name="
+
p
.
config
.
VMName
datastore
:=
"--datastore="
+
p
.
config
.
Datastore
network
:=
"--network="
+
p
.
config
.
VMNetwork
vm_folder
:=
"--vmFolder="
+
p
.
config
.
VMFolder
url
:=
"vi://"
+
p
.
config
.
Username
+
":"
+
p
.
config
.
Password
+
"@"
+
p
.
config
.
Host
+
"/"
+
p
.
config
.
Datacenter
+
"/"
+
p
.
config
.
PathToResoucePool
cmd
:=
exec
.
Command
(
program
,
nossl
,
accepteulas
,
name
,
datastore
,
network
,
vm_folder
,
vmx
,
url
)
var
out
bytes
.
Buffer
cmd
.
Stdout
=
&
out
err_run
:=
cmd
.
Run
()
if
err_run
!=
nil
{
return
nil
,
false
,
fmt
.
Errorf
(
"%s"
,
out
.
String
())
}
ui
.
Message
(
fmt
.
Sprintf
(
"%s"
,
out
.
String
()))
return
artifact
,
false
,
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