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
beb190d9
Commit
beb190d9
authored
Aug 25, 2013
by
Mitchell Hashimoto
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'jvandyke-provisioner-chef-solo'
Chef-solo provisioner first pass.
parents
86abf14b
585cee9b
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
469 additions
and
0 deletions
+469
-0
config.go
config.go
+1
-0
plugin/provisioner-chef-solo/main.go
plugin/provisioner-chef-solo/main.go
+10
-0
provisioner/chef-solo/provisioner.go
provisioner/chef-solo/provisioner.go
+390
-0
provisioner/chef-solo/provisioner_test.go
provisioner/chef-solo/provisioner_test.go
+68
-0
No files found.
config.go
View file @
beb190d9
...
...
@@ -39,6 +39,7 @@ const defaultConfig = `
},
"provisioners": {
"chef-solo": "packer-provisioner-chef-solo",
"file": "packer-provisioner-file",
"shell": "packer-provisioner-shell",
"salt-masterless": "packer-provisioner-salt-masterless"
...
...
plugin/provisioner-chef-solo/main.go
0 → 100644
View file @
beb190d9
package
main
import
(
"github.com/mitchellh/packer/packer/plugin"
"github.com/mitchellh/packer/provisioner/chef-solo"
)
func
main
()
{
plugin
.
ServeProvisioner
(
new
(
chefSolo
.
Provisioner
))
}
provisioner/chef-solo/provisioner.go
0 → 100644
View file @
beb190d9
// This package implements a provisioner for Packer that executes
// shell scripts within the remote machine.
package
chefSolo
import
(
"bufio"
"bytes"
"encoding/json"
"fmt"
"github.com/mitchellh/iochan"
"github.com/mitchellh/mapstructure"
"github.com/mitchellh/packer/packer"
"io"
"io/ioutil"
"log"
"os"
"path/filepath"
"strings"
"text/template"
)
const
(
RemoteStagingPath
=
"/tmp/provision/chef-solo"
RemoteFileCachePath
=
"/tmp/provision/chef-solo"
RemoteCookbookPath
=
"/tmp/provision/chef-solo/cookbooks"
DefaultCookbooksPath
=
"cookbooks"
)
var
Ui
packer
.
Ui
type
config
struct
{
// An array of local paths of cookbooks to upload.
CookbooksPaths
[]
string
`mapstructure:"cookbooks_paths"`
// An array of recipes to run.
Recipes
[]
string
// A string of JSON that will be used as the JSON attributes for the
// Chef run.
Json
map
[
string
]
interface
{}
// Option to avoid sudo use when executing commands. Defaults to false.
PreventSudo
bool
`mapstructure:"prevent_sudo"`
// If true, skips installing Chef. Defaults to false.
SkipInstall
bool
`mapstructure:"skip_install"`
}
type
Provisioner
struct
{
config
config
}
type
ExecuteRecipeTemplate
struct
{
SoloRbPath
string
JsonPath
string
Sudo
bool
}
type
ExecuteInstallChefTemplate
struct
{
PreventSudo
bool
}
func
(
p
*
Provisioner
)
Prepare
(
raws
...
interface
{})
error
{
errs
:=
make
([]
error
,
0
)
for
_
,
raw
:=
range
raws
{
if
err
:=
mapstructure
.
Decode
(
raw
,
&
p
.
config
);
err
!=
nil
{
return
err
}
}
if
p
.
config
.
CookbooksPaths
==
nil
{
p
.
config
.
CookbooksPaths
=
[]
string
{
DefaultCookbooksPath
}
}
if
p
.
config
.
Recipes
==
nil
{
p
.
config
.
Recipes
=
make
([]
string
,
0
)
}
if
p
.
config
.
Json
!=
nil
{
if
_
,
err
:=
json
.
Marshal
(
p
.
config
.
Json
);
err
!=
nil
{
errs
=
append
(
errs
,
fmt
.
Errorf
(
"Bad JSON: %s"
,
err
))
}
}
else
{
p
.
config
.
Json
=
make
(
map
[
string
]
interface
{})
}
for
_
,
path
:=
range
p
.
config
.
CookbooksPaths
{
pFileInfo
,
err
:=
os
.
Stat
(
path
)
if
err
!=
nil
||
!
pFileInfo
.
IsDir
()
{
errs
=
append
(
errs
,
fmt
.
Errorf
(
"Bad cookbook path '%s': %s"
,
path
,
err
))
}
}
if
len
(
errs
)
>
0
{
return
&
packer
.
MultiError
{
errs
}
}
return
nil
}
func
(
p
*
Provisioner
)
Provision
(
ui
packer
.
Ui
,
comm
packer
.
Communicator
)
error
{
var
err
error
Ui
=
ui
if
!
p
.
config
.
SkipInstall
{
err
=
InstallChefSolo
(
p
.
config
.
PreventSudo
,
comm
)
if
err
!=
nil
{
return
fmt
.
Errorf
(
"Error installing Chef Solo: %s"
,
err
)
}
}
err
=
CreateRemoteDirectory
(
RemoteCookbookPath
,
comm
)
if
err
!=
nil
{
return
fmt
.
Errorf
(
"Error creating remote staging directory: %s"
,
err
)
}
soloRbPath
,
err
:=
CreateSoloRb
(
p
.
config
.
CookbooksPaths
,
comm
)
if
err
!=
nil
{
return
fmt
.
Errorf
(
"Error creating Chef Solo configuration file: %s"
,
err
)
}
jsonPath
,
err
:=
CreateAttributesJson
(
p
.
config
.
Json
,
p
.
config
.
Recipes
,
comm
)
if
err
!=
nil
{
return
fmt
.
Errorf
(
"Error uploading JSON attributes file: %s"
,
err
)
}
// Upload all cookbooks
for
_
,
path
:=
range
p
.
config
.
CookbooksPaths
{
ui
.
Say
(
fmt
.
Sprintf
(
"Copying cookbook path: %s"
,
path
))
err
=
UploadLocalDirectory
(
path
,
comm
)
if
err
!=
nil
{
return
fmt
.
Errorf
(
"Error uploading cookbooks: %s"
,
err
)
}
}
// Execute requested recipes
ui
.
Say
(
"Beginning Chef Solo run"
)
// Compile the command
var
command
bytes
.
Buffer
t
:=
template
.
Must
(
template
.
New
(
"chef-run"
)
.
Parse
(
"{{if .Sudo}}sudo {{end}}chef-solo --no-color -c {{.SoloRbPath}} -j {{.JsonPath}}"
))
t
.
Execute
(
&
command
,
&
ExecuteRecipeTemplate
{
soloRbPath
,
jsonPath
,
!
p
.
config
.
PreventSudo
})
err
=
executeCommand
(
command
.
String
(),
comm
)
if
err
!=
nil
{
return
fmt
.
Errorf
(
"Error running Chef Solo: %s"
,
err
)
}
return
nil
}
func
UploadLocalDirectory
(
localDir
string
,
comm
packer
.
Communicator
)
(
err
error
)
{
visitPath
:=
func
(
path
string
,
f
os
.
FileInfo
,
err
error
)
(
err2
error
)
{
var
remotePath
=
RemoteCookbookPath
+
"/"
+
path
if
f
.
IsDir
()
{
// Make remote directory
err
=
CreateRemoteDirectory
(
remotePath
,
comm
)
if
err
!=
nil
{
return
err
}
}
else
{
// Upload file to existing directory
file
,
err
:=
os
.
Open
(
path
)
if
err
!=
nil
{
return
fmt
.
Errorf
(
"Error opening file: %s"
,
err
)
}
err
=
comm
.
Upload
(
remotePath
,
file
)
if
err
!=
nil
{
return
fmt
.
Errorf
(
"Error uploading file: %s"
,
err
)
}
}
return
}
log
.
Printf
(
"Uploading directory %s"
,
localDir
)
err
=
filepath
.
Walk
(
localDir
,
visitPath
)
if
err
!=
nil
{
return
fmt
.
Errorf
(
"Error uploading cookbook %s: %s"
,
localDir
,
err
)
}
return
nil
}
func
CreateRemoteDirectory
(
path
string
,
comm
packer
.
Communicator
)
(
err
error
)
{
log
.
Printf
(
"Creating remote directory: %s "
,
path
)
var
copyCommand
=
[]
string
{
"mkdir -p"
,
path
}
var
cmd
packer
.
RemoteCmd
cmd
.
Command
=
strings
.
Join
(
copyCommand
,
" "
)
var
stdout
bytes
.
Buffer
cmd
.
Stdout
=
&
stdout
// Start the command
if
err
:=
comm
.
Start
(
&
cmd
);
err
!=
nil
{
return
fmt
.
Errorf
(
"Unable to create remote directory %s: %d"
,
path
,
err
)
}
// Wait for it to complete
cmd
.
Wait
()
return
}
func
CreateSoloRb
(
cookbooksPaths
[]
string
,
comm
packer
.
Communicator
)
(
str
string
,
err
error
)
{
Ui
.
Say
(
"Creating Chef configuration file..."
)
remotePath
:=
RemoteStagingPath
+
"/solo.rb"
tf
,
err
:=
ioutil
.
TempFile
(
""
,
"packer-chef-solo-rb"
)
if
err
!=
nil
{
return
""
,
fmt
.
Errorf
(
"Error preparing Chef solo.rb: %s"
,
err
)
}
// Write our contents to it
writer
:=
bufio
.
NewWriter
(
tf
)
var
cookbooksPathsFull
=
make
([]
string
,
len
(
cookbooksPaths
))
for
i
,
path
:=
range
cookbooksPaths
{
cookbooksPathsFull
[
i
]
=
"
\"
"
+
RemoteCookbookPath
+
"/"
+
path
+
"
\"
"
}
var
contents
bytes
.
Buffer
var
soloRbText
=
`
file_cache_path "{{.FileCachePath}}"
cookbook_path [{{.CookbookPath}}]
`
t
:=
template
.
Must
(
template
.
New
(
"soloRb"
)
.
Parse
(
soloRbText
))
t
.
Execute
(
&
contents
,
map
[
string
]
string
{
"FileCachePath"
:
RemoteFileCachePath
,
"CookbookPath"
:
strings
.
Join
(
cookbooksPathsFull
,
","
),
})
if
_
,
err
:=
writer
.
WriteString
(
contents
.
String
());
err
!=
nil
{
return
""
,
fmt
.
Errorf
(
"Error preparing solo.rb: %s"
,
err
)
}
if
err
:=
writer
.
Flush
();
err
!=
nil
{
return
""
,
fmt
.
Errorf
(
"Error preparing solo.rb: %s"
,
err
)
}
name
:=
tf
.
Name
()
tf
.
Close
()
f
,
err
:=
os
.
Open
(
name
)
defer
os
.
Remove
(
name
)
log
.
Printf
(
"Chef configuration file contents: %s"
,
contents
)
// Upload the Chef Solo configuration file to the cookbook directory.
log
.
Printf
(
"Uploading chef configuration file to %s"
,
remotePath
)
err
=
comm
.
Upload
(
remotePath
,
f
)
if
err
!=
nil
{
return
""
,
fmt
.
Errorf
(
"Error uploading Chef Solo configuration file: %s"
,
err
)
}
return
remotePath
,
nil
}
func
CreateAttributesJson
(
jsonAttrs
map
[
string
]
interface
{},
recipes
[]
string
,
comm
packer
.
Communicator
)
(
str
string
,
err
error
)
{
Ui
.
Say
(
"Creating and uploading Chef attributes file"
)
remotePath
:=
RemoteStagingPath
+
"/node.json"
var
formattedRecipes
[]
string
for
_
,
value
:=
range
recipes
{
formattedRecipes
=
append
(
formattedRecipes
,
"recipe["
+
value
+
"]"
)
}
// Add Recipes to JSON
if
len
(
formattedRecipes
)
>
0
{
log
.
Printf
(
"Overriding node run list: %s"
,
strings
.
Join
(
formattedRecipes
,
", "
))
jsonAttrs
[
"run_list"
]
=
formattedRecipes
}
// Convert to JSON string
jsonString
,
err
:=
json
.
MarshalIndent
(
jsonAttrs
,
""
,
" "
)
if
err
!=
nil
{
return
""
,
fmt
.
Errorf
(
"Error parsing JSON attributes: %s"
,
err
)
}
tf
,
err
:=
ioutil
.
TempFile
(
""
,
"packer-chef-solo-json"
)
if
err
!=
nil
{
return
""
,
fmt
.
Errorf
(
"Error preparing Chef attributes file: %s"
,
err
)
}
defer
os
.
Remove
(
tf
.
Name
())
// Write our contents to it
writer
:=
bufio
.
NewWriter
(
tf
)
if
_
,
err
:=
writer
.
WriteString
(
string
(
jsonString
));
err
!=
nil
{
return
""
,
fmt
.
Errorf
(
"Error preparing Chef attributes file: %s"
,
err
)
}
if
err
:=
writer
.
Flush
();
err
!=
nil
{
return
""
,
fmt
.
Errorf
(
"Error preparing Chef attributes file: %s"
,
err
)
}
jsonFile
:=
tf
.
Name
()
tf
.
Close
()
log
.
Printf
(
"Opening %s for reading"
,
jsonFile
)
f
,
err
:=
os
.
Open
(
jsonFile
)
if
err
!=
nil
{
return
""
,
fmt
.
Errorf
(
"Error opening JSON attributes file: %s"
,
err
)
}
log
.
Printf
(
"Uploading %s => %s"
,
jsonFile
,
remotePath
)
err
=
comm
.
Upload
(
remotePath
,
f
)
if
err
!=
nil
{
return
""
,
fmt
.
Errorf
(
"Error uploading JSON attributes file: %s"
,
err
)
}
return
remotePath
,
nil
}
func
InstallChefSolo
(
preventSudo
bool
,
comm
packer
.
Communicator
)
(
err
error
)
{
Ui
.
Say
(
"Installing Chef Solo"
)
var
command
bytes
.
Buffer
t
:=
template
.
Must
(
template
.
New
(
"install-chef"
)
.
Parse
(
"curl -L https://www.opscode.com/chef/install.sh | {{if .sudo}}sudo {{end}}bash"
))
t
.
Execute
(
&
command
,
map
[
string
]
bool
{
"sudo"
:
!
preventSudo
})
err
=
executeCommand
(
command
.
String
(),
comm
)
if
err
!=
nil
{
return
fmt
.
Errorf
(
"Unable to install Chef Solo: %d"
,
err
)
}
return
nil
}
func
executeCommand
(
command
string
,
comm
packer
.
Communicator
)
(
err
error
)
{
// Setup the remote command
stdout_r
,
stdout_w
:=
io
.
Pipe
()
stderr_r
,
stderr_w
:=
io
.
Pipe
()
var
cmd
packer
.
RemoteCmd
cmd
.
Command
=
command
cmd
.
Stdout
=
stdout_w
cmd
.
Stderr
=
stderr_w
log
.
Printf
(
"Executing command: %s"
,
cmd
.
Command
)
err
=
comm
.
Start
(
&
cmd
)
if
err
!=
nil
{
return
fmt
.
Errorf
(
"Failed executing command: %s"
,
err
)
}
exitChan
:=
make
(
chan
int
,
1
)
stdoutChan
:=
iochan
.
DelimReader
(
stdout_r
,
'\n'
)
stderrChan
:=
iochan
.
DelimReader
(
stderr_r
,
'\n'
)
go
func
()
{
defer
stdout_w
.
Close
()
defer
stderr_w
.
Close
()
cmd
.
Wait
()
exitChan
<-
cmd
.
ExitStatus
}()
OutputLoop
:
for
{
select
{
case
output
:=
<-
stderrChan
:
Ui
.
Message
(
strings
.
TrimSpace
(
output
))
case
output
:=
<-
stdoutChan
:
Ui
.
Message
(
strings
.
TrimSpace
(
output
))
case
exitStatus
:=
<-
exitChan
:
log
.
Printf
(
"Chef Solo provisioner exited with status %d"
,
exitStatus
)
if
exitStatus
!=
0
{
return
fmt
.
Errorf
(
"Command exited with non-zero exit status: %d"
,
exitStatus
)
}
break
OutputLoop
}
}
// Make sure we finish off stdout/stderr because we may have gotten
// a message from the exit channel first.
for
output
:=
range
stdoutChan
{
Ui
.
Message
(
output
)
}
for
output
:=
range
stderrChan
{
Ui
.
Message
(
output
)
}
return
nil
}
provisioner/chef-solo/provisioner_test.go
0 → 100644
View file @
beb190d9
package
chefSolo
import
(
"github.com/mitchellh/packer/packer"
"io/ioutil"
"os"
"testing"
)
func
testConfig
()
map
[
string
]
interface
{}
{
return
map
[
string
]
interface
{}{
// "inline": []interface{}{"foo", "bar"},
}
}
func
TestProvisioner_Impl
(
t
*
testing
.
T
)
{
var
raw
interface
{}
raw
=
&
Provisioner
{}
if
_
,
ok
:=
raw
.
(
packer
.
Provisioner
);
!
ok
{
t
.
Fatalf
(
"must be a Provisioner"
)
}
}
// Cookbook paths
//////////////////
func
TestProvisionerPrepare_DefaultCookbookPathIsUsed
(
t
*
testing
.
T
)
{
var
p
Provisioner
config
:=
testConfig
()
err
:=
p
.
Prepare
(
config
)
if
err
==
nil
{
t
.
Errorf
(
"expected error to be thrown for unavailable cookbook path"
)
}
if
len
(
p
.
config
.
CookbooksPaths
)
!=
1
||
p
.
config
.
CookbooksPaths
[
0
]
!=
DefaultCookbooksPath
{
t
.
Errorf
(
"unexpected default cookbook path: %s"
,
p
.
config
.
CookbooksPaths
)
}
}
func
TestProvisionerPrepare_GivenCookbookPathsAreAddedToConfig
(
t
*
testing
.
T
)
{
var
p
Provisioner
path1
,
err
:=
ioutil
.
TempDir
(
""
,
"cookbooks_one"
)
if
err
!=
nil
{
t
.
Errorf
(
"err: %s"
,
err
)
}
path2
,
err
:=
ioutil
.
TempDir
(
""
,
"cookbooks_two"
)
if
err
!=
nil
{
t
.
Errorf
(
"err: %s"
,
err
)
}
defer
os
.
Remove
(
path1
)
defer
os
.
Remove
(
path2
)
config
:=
testConfig
()
config
[
"cookbooks_paths"
]
=
[]
string
{
path1
,
path2
}
err
=
p
.
Prepare
(
config
)
if
err
!=
nil
{
t
.
Errorf
(
"err: %s"
,
err
)
}
if
len
(
p
.
config
.
CookbooksPaths
)
!=
2
||
p
.
config
.
CookbooksPaths
[
0
]
!=
path1
||
p
.
config
.
CookbooksPaths
[
1
]
!=
path2
{
t
.
Errorf
(
"unexpected default cookbook path: %s"
,
p
.
config
.
CookbooksPaths
)
}
}
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