Chef cookbook for Go programming language.
- Ubuntu (12.04/13.04/14.10)
- Debian (6.0)
Notes: This cookbook has been tested on the listed platforms. It may work on other platforms with or without modification. Please report issues any additional platforms so they can be added.
Just include golang
in your node's run_list
:
{
"name":"my_node",
"run_list": [
"recipe[golang]"
]
}
To install Go packages using node attributes, include golang::packages
in your node's run_list
, and use the ['go']['packages']
attribute:
{
"name":"my_node",
"go": {
"packages": [
"launchpad.net/gocheck"
]
},
"run_list": [
"recipe[golang::packages]"
]
}
Key | Type | Description | Default |
---|---|---|---|
['go']['version'] | String | Go version | 1.4 |
['go']['platform'] | String | `amd64` or `i386` | amd64 |
['go']['scm'] | Boolean | install SCM dependencies `git`, `hg`, and `bzr` | true |
['go']['packages'] | Array | Go packages to install when using the `golang::packages` recipe | [] |
['go']['owner'] | String | The user account that owns $GOPATH | root |
['go']['group'] | String | The group that owns $GOPATH | root |
['go']['mode'] | String | The mode of $GOPATH | 0755 |
This project have foodcritic for syntax checking and
test-kitchen for integration testing. You can run the test suite by
typing: rake kitchen:all
(may be slow for the first time).
In order to run these tests, the following requirements must be satisfied:
- Vagrant (>= 1.1.0)
- VirtualBox
- Vagrant Berkshelf Plugin
- Fork the repository
- Create a named feature branch (like
add_component_x
) - Write you change
- Test it by running
rake kitchen:all
- Submit a Pull Request