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
4b9a9f59
Commit
4b9a9f59
authored
Feb 21, 2014
by
Mitchell Hashimoto
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #842 from strcrzy/ansible_config_options
provisioner/ansible: more configuration options
parents
9b23282b
458d90c7
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
94 additions
and
3 deletions
+94
-3
provisioner/ansible-local/provisioner.go
provisioner/ansible-local/provisioner.go
+65
-3
provisioner/ansible-local/provisioner_test.go
provisioner/ansible-local/provisioner_test.go
+24
-0
website/source/docs/provisioners/ansible-local.html.markdown
website/source/docs/provisioners/ansible-local.html.markdown
+5
-0
No files found.
provisioner/ansible-local/provisioner.go
View file @
4b9a9f59
...
...
@@ -6,6 +6,7 @@ import (
"github.com/mitchellh/packer/packer"
"os"
"path/filepath"
"strings"
)
const
DefaultStagingDir
=
"/tmp/packer-provisioner-ansible-local"
...
...
@@ -23,9 +24,21 @@ type Config struct {
// An array of local paths of roles to upload.
RolePaths
[]
string
`mapstructure:"role_paths"`
// Path to group_vars directory
GroupVars
string
`mapstructure:"group_vars"`
// Path to host_vars directory
HostVars
string
`mapstructure:"host_vars"`
// The directory where files will be uploaded. Packer requires write
// permissions in this directory.
StagingDir
string
`mapstructure:"staging_directory"`
// The command to run ansible
Command
string
// Extra options to pass to the ansible command
ExtraArguments
[]
string
`mapstructure:"extra_arguments"`
}
type
Provisioner
struct
{
...
...
@@ -48,14 +61,22 @@ func (p *Provisioner) Prepare(raws ...interface{}) error {
// Accumulate any errors
errs
:=
common
.
CheckUnusedConfig
(
md
)
// Defaults
if
p
.
config
.
StagingDir
==
""
{
p
.
config
.
StagingDir
=
DefaultStagingDir
}
if
p
.
config
.
Command
==
""
{
p
.
config
.
Command
=
"ansible-playbook"
}
// Templates
templates
:=
map
[
string
]
*
string
{
"playbook_file"
:
&
p
.
config
.
PlaybookFile
,
"staging_dir"
:
&
p
.
config
.
StagingDir
,
"command"
:
&
p
.
config
.
Command
,
"group_vars"
:
&
p
.
config
.
GroupVars
,
"host_vars"
:
&
p
.
config
.
HostVars
,
}
for
n
,
ptr
:=
range
templates
{
...
...
@@ -70,6 +91,7 @@ func (p *Provisioner) Prepare(raws ...interface{}) error {
sliceTemplates
:=
map
[
string
][]
string
{
"playbook_paths"
:
p
.
config
.
PlaybookPaths
,
"role_paths"
:
p
.
config
.
RolePaths
,
"extra_arguments"
:
p
.
config
.
ExtraArguments
,
}
for
n
,
slice
:=
range
sliceTemplates
{
...
...
@@ -99,6 +121,20 @@ func (p *Provisioner) Prepare(raws ...interface{}) error {
errs
=
packer
.
MultiErrorAppend
(
errs
,
err
)
}
}
// Check that the group_vars directory exists, if configured
if
len
(
p
.
config
.
GroupVars
)
>
0
{
if
err
:=
validateDirConfig
(
p
.
config
.
GroupVars
,
"group_vars"
);
err
!=
nil
{
errs
=
packer
.
MultiErrorAppend
(
errs
,
err
)
}
}
// Check that the host_vars directory exists, if configured
if
len
(
p
.
config
.
HostVars
)
>
0
{
if
err
:=
validateDirConfig
(
p
.
config
.
HostVars
,
"host_vars"
);
err
!=
nil
{
errs
=
packer
.
MultiErrorAppend
(
errs
,
err
)
}
}
if
errs
!=
nil
&&
len
(
errs
.
Errors
)
>
0
{
return
errs
}
...
...
@@ -120,6 +156,26 @@ func (p *Provisioner) Provision(ui packer.Ui, comm packer.Communicator) error {
return
fmt
.
Errorf
(
"Error uploading main playbook: %s"
,
err
)
}
// Upload group_vars
if
len
(
p
.
config
.
GroupVars
)
>
0
{
ui
.
Message
(
"Uploading group_vars directory..."
)
src
:=
p
.
config
.
GroupVars
dst
:=
filepath
.
Join
(
p
.
config
.
StagingDir
,
"group_vars"
)
if
err
:=
p
.
uploadDir
(
ui
,
comm
,
dst
,
src
);
err
!=
nil
{
return
fmt
.
Errorf
(
"Error uploading group_vars directory: %s"
,
err
)
}
}
// Upload host_vars
if
len
(
p
.
config
.
HostVars
)
>
0
{
ui
.
Message
(
"Uploading host_vars directory..."
)
src
:=
p
.
config
.
HostVars
dst
:=
filepath
.
Join
(
p
.
config
.
StagingDir
,
"host_vars"
)
if
err
:=
p
.
uploadDir
(
ui
,
comm
,
dst
,
src
);
err
!=
nil
{
return
fmt
.
Errorf
(
"Error uploading host_vars directory: %s"
,
err
)
}
}
if
len
(
p
.
config
.
RolePaths
)
>
0
{
ui
.
Message
(
"Uploading role directories..."
)
for
_
,
src
:=
range
p
.
config
.
RolePaths
{
...
...
@@ -161,7 +217,13 @@ func (p *Provisioner) executeAnsible(ui packer.Ui, comm packer.Communicator) err
// The inventory must be set to "127.0.0.1,". The comma is important
// as its the only way to override the ansible inventory when dealing
// with a single host.
command
:=
fmt
.
Sprintf
(
"ansible-playbook %s -c local -i %s"
,
playbook
,
`"127.0.0.1,"`
)
var
command
string
if
len
(
p
.
config
.
ExtraArguments
)
>
0
{
command
=
fmt
.
Sprintf
(
"%s %s %s -c local -i
\"
127.0.0.1,
\"
"
,
p
.
config
.
Command
,
playbook
,
strings
.
Join
(
p
.
config
.
ExtraArguments
,
" "
))
}
else
{
command
=
fmt
.
Sprintf
(
"%s %s -c local -i
\"
127.0.0.1,
\"
"
,
p
.
config
.
Command
,
playbook
)
}
ui
.
Message
(
fmt
.
Sprintf
(
"Executing Ansible: %s"
,
command
))
cmd
:=
&
packer
.
RemoteCmd
{
...
...
provisioner/ansible-local/provisioner_test.go
View file @
4b9a9f59
...
...
@@ -120,4 +120,28 @@ func TestProvisionerPrepare_Dirs(t *testing.T) {
if
err
!=
nil
{
t
.
Fatalf
(
"err: %s"
,
err
)
}
config
[
"group_vars"
]
=
playbook_file
.
Name
()
err
=
p
.
Prepare
(
config
)
if
err
==
nil
{
t
.
Fatalf
(
"should error if group_vars path is not a dir"
)
}
config
[
"group_vars"
]
=
os
.
TempDir
()
err
=
p
.
Prepare
(
config
)
if
err
!=
nil
{
t
.
Fatalf
(
"err: %s"
,
err
)
}
config
[
"host_vars"
]
=
playbook_file
.
Name
()
err
=
p
.
Prepare
(
config
)
if
err
==
nil
{
t
.
Fatalf
(
"should error if host_vars path is not a dir"
)
}
config
[
"host_vars"
]
=
os
.
TempDir
()
err
=
p
.
Prepare
(
config
)
if
err
!=
nil
{
t
.
Fatalf
(
"err: %s"
,
err
)
}
}
website/source/docs/provisioners/ansible-local.html.markdown
View file @
4b9a9f59
...
...
@@ -34,6 +34,11 @@ Required:
Optional:
*
`command`
(string) - The command to invoke ansible. Defaults to "ansible-playbook".
*
`extra_arguments`
(array of strings) - An array of extra arguments to pass to the
ansible command. By default, this is empty.
*
`playbook_paths`
(array of strings) - An array of paths to playbook files on
your local system. These will be uploaded to the remote machine under
`staging_directory`
/playbooks. By default, this is empty.
...
...
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