2013-07-07 20:37:44 -04:00
|
|
|
# Contributing to Packer
|
|
|
|
|
2018-01-18 04:32:20 -05:00
|
|
|
**First:** if you're unsure or afraid of _anything_, just ask or submit the
|
|
|
|
issue or pull request anyways. You won't be yelled at for giving your best
|
|
|
|
effort. The worst that can happen is that you'll be politely asked to change
|
|
|
|
something. We appreciate any sort of contributions, and don't want a wall of
|
|
|
|
rules to get in the way of that.
|
2013-07-07 20:37:44 -04:00
|
|
|
|
2018-01-18 04:32:20 -05:00
|
|
|
However, for those individuals who want a bit more guidance on the best way to
|
|
|
|
contribute to the project, read on. This document will cover what we're looking
|
|
|
|
for. By addressing all the points we're looking for, it raises the chances we
|
|
|
|
can quickly merge or address your contributions.
|
2013-07-07 20:37:44 -04:00
|
|
|
|
|
|
|
## Issues
|
|
|
|
|
|
|
|
### Reporting an Issue
|
|
|
|
|
2018-01-18 04:32:20 -05:00
|
|
|
* Make sure you test against the latest released version. It is possible we
|
|
|
|
already fixed the bug you're experiencing.
|
2013-07-07 20:37:44 -04:00
|
|
|
|
2018-01-18 04:32:20 -05:00
|
|
|
* Run the command with debug output with the environment variable `PACKER_LOG`.
|
|
|
|
For example: `PACKER_LOG=1 packer build template.json`. Take the _entire_
|
|
|
|
output and create a [gist](https://gist.github.com) for linking to in your
|
|
|
|
issue. Packer should strip sensitive keys from the output, but take a look
|
|
|
|
through just in case.
|
2013-10-18 04:04:33 -04:00
|
|
|
|
2018-01-18 04:32:20 -05:00
|
|
|
* Provide a reproducible test case. If a contributor can't reproduce an issue,
|
|
|
|
then it dramatically lowers the chances it'll get fixed. And in some cases,
|
|
|
|
the issue will eventually be closed.
|
2013-07-07 20:37:44 -04:00
|
|
|
|
2018-01-18 04:32:20 -05:00
|
|
|
* Respond promptly to any questions made by the Packer team to your issue. Stale
|
|
|
|
issues will be closed.
|
2013-07-07 20:37:44 -04:00
|
|
|
|
|
|
|
### Issue Lifecycle
|
|
|
|
|
|
|
|
1. The issue is reported.
|
|
|
|
|
|
|
|
2. The issue is verified and categorized by a Packer collaborator.
|
2018-01-18 04:32:20 -05:00
|
|
|
Categorization is done via tags. For example, bugs are marked as "bugs" and
|
|
|
|
easy fixes are marked as "easy".
|
2013-07-07 20:37:44 -04:00
|
|
|
|
2018-01-18 04:32:20 -05:00
|
|
|
3. Unless it is critical, the issue is left for a period of time (sometimes many
|
|
|
|
weeks), giving outside contributors a chance to address the issue.
|
2013-07-07 20:37:44 -04:00
|
|
|
|
|
|
|
4. The issue is addressed in a pull request or commit. The issue will be
|
|
|
|
referenced in the commit message so that the code that fixes it is clearly
|
|
|
|
linked.
|
|
|
|
|
|
|
|
5. The issue is closed.
|
2013-07-12 14:40:03 -04:00
|
|
|
|
2018-08-13 06:50:55 -04:00
|
|
|
## Setting up Go
|
2013-07-12 14:40:03 -04:00
|
|
|
|
2018-08-14 03:49:24 -04:00
|
|
|
If you have never worked with Go before, you will have to install its
|
2018-08-13 06:50:55 -04:00
|
|
|
runtime in order to build packer.
|
2013-07-12 14:40:03 -04:00
|
|
|
|
2018-08-13 06:50:55 -04:00
|
|
|
1. [Install go](https://golang.org/doc/install#install)
|
2013-07-12 14:40:03 -04:00
|
|
|
|
2018-08-13 06:50:55 -04:00
|
|
|
## Setting up Packer for dev
|
2013-07-12 14:40:03 -04:00
|
|
|
|
2018-08-13 06:50:55 -04:00
|
|
|
If/when you have go installed you can already `go get` packer and `make` in
|
|
|
|
order to compile and test Packer. These instructions target
|
|
|
|
POSIX-like environments (Mac OS X, Linux, Cygwin, etc.) so you may need to
|
|
|
|
adjust them for Windows or other shells.
|
2018-08-14 03:49:24 -04:00
|
|
|
The instructions below are for go 1.7. or later.
|
2014-06-26 07:51:49 -04:00
|
|
|
|
2018-08-13 06:40:42 -04:00
|
|
|
|
|
|
|
1. Download the Packer source (and its dependencies) by running
|
2018-01-18 04:32:20 -05:00
|
|
|
`go get github.com/hashicorp/packer`. This will download the Packer source to
|
2017-04-08 17:11:23 -04:00
|
|
|
`$GOPATH/src/github.com/hashicorp/packer`.
|
2014-06-26 07:51:49 -04:00
|
|
|
|
2018-08-13 06:40:42 -04:00
|
|
|
2. When working on Packer, first `cd $GOPATH/src/github.com/hashicorp/packer`
|
2018-01-18 04:32:20 -05:00
|
|
|
so you can run `make` and easily access other files. Run `make help` to get
|
2016-08-14 09:28:29 -04:00
|
|
|
information about make targets.
|
2013-07-12 14:40:03 -04:00
|
|
|
|
2018-08-13 06:40:42 -04:00
|
|
|
3. Make your changes to the Packer source. You can run `make` in
|
2018-01-18 04:32:20 -05:00
|
|
|
`$GOPATH/src/github.com/hashicorp/packer` to run tests and build the Packer
|
2016-02-05 16:43:18 -05:00
|
|
|
binary. Any compilation errors will be shown when the binaries are
|
2018-01-18 04:32:20 -05:00
|
|
|
rebuilding. If you don't have `make` you can simply run
|
|
|
|
`go build -o bin/packer .` from the project root.
|
2013-07-12 14:40:03 -04:00
|
|
|
|
2018-08-13 06:40:42 -04:00
|
|
|
4. After running building Packer successfully, use
|
2017-04-04 16:39:01 -04:00
|
|
|
`$GOPATH/src/github.com/hashicorp/packer/bin/packer` to build a machine and
|
2018-01-18 04:32:20 -05:00
|
|
|
verify your changes work. For instance:
|
|
|
|
`$GOPATH/src/github.com/hashicorp/packer/bin/packer build template.json`.
|
2013-07-12 14:40:03 -04:00
|
|
|
|
2018-08-13 06:40:42 -04:00
|
|
|
5. If everything works well and the tests pass, run `go fmt` on your code before
|
2018-01-18 04:32:20 -05:00
|
|
|
submitting a pull-request.
|
2016-02-05 17:21:10 -05:00
|
|
|
|
2016-07-06 19:28:00 -04:00
|
|
|
### Opening an Pull Request
|
|
|
|
|
2018-04-02 13:52:05 -04:00
|
|
|
Thank you for contributing! When you are ready to open a pull-request, you will
|
|
|
|
need to [fork
|
|
|
|
Packer](https://github.com/hashicorp/packer#fork-destination-box), push your
|
|
|
|
changes to your fork, and then open a pull-request.
|
2016-07-06 19:28:00 -04:00
|
|
|
|
2018-01-18 04:32:20 -05:00
|
|
|
For example, my github username is `cbednarski`, so I would do the following:
|
2016-07-06 19:28:00 -04:00
|
|
|
|
2018-01-18 04:32:20 -05:00
|
|
|
```
|
2018-01-23 17:33:40 -05:00
|
|
|
git checkout -b f-my-feature
|
2018-01-18 04:32:20 -05:00
|
|
|
# Develop a patch.
|
2018-01-23 17:33:40 -05:00
|
|
|
git push https://github.com/cbednarski/Packer f-my-feature
|
2018-01-18 04:32:20 -05:00
|
|
|
```
|
2016-07-06 19:28:00 -04:00
|
|
|
|
|
|
|
From there, open your fork in your browser to open a new pull-request.
|
|
|
|
|
2018-01-18 04:32:20 -05:00
|
|
|
**Note:** Go infers package names from their file paths. This means `go build`
|
|
|
|
will break if you `git clone` your fork instead of using `go get` on the main
|
|
|
|
Packer project.
|
2016-07-06 19:28:00 -04:00
|
|
|
|
2018-04-02 13:52:05 -04:00
|
|
|
### Pull Request Lifecycle
|
|
|
|
|
|
|
|
1. You are welcome to submit your pull request for commentary or review before
|
|
|
|
it is fully completed. Please prefix the title of your pull request with
|
|
|
|
"[WIP]" to indicate this. It's also a good idea to include specific questions
|
|
|
|
or items you'd like feedback on.
|
|
|
|
|
|
|
|
1. Once you believe your pull request is ready to be merged, you can remove any
|
|
|
|
"[WIP]" prefix from the title and a core team member will review.
|
|
|
|
|
|
|
|
1. One of Packer's core team members will look over your contribution and
|
|
|
|
either provide comments letting you know if there is anything left to do. We
|
|
|
|
do our best to provide feedback in a timely manner, but it may take some time
|
|
|
|
for us to respond.
|
|
|
|
|
|
|
|
1. Once all outstanding comments and checklist items have been addressed, your
|
|
|
|
contribution will be merged! Merged PRs will be included in the next
|
|
|
|
Packer release. The core team takes care of updating the CHANGELOG as they
|
|
|
|
merge.
|
|
|
|
|
|
|
|
1. In rare cases, we might decide that a PR should be closed. We'll make sure to
|
|
|
|
provide clear reasoning when this happens.
|
|
|
|
|
2016-02-05 17:21:10 -05:00
|
|
|
### Tips for Working on Packer
|
|
|
|
|
2017-02-09 22:25:09 -05:00
|
|
|
#### Working on forks
|
|
|
|
|
2018-01-18 04:32:20 -05:00
|
|
|
The easiest way to work on a fork is to set it as a remote of the Packer
|
|
|
|
project. After following the steps in "Setting up Go to work on Packer":
|
2017-02-09 22:25:09 -05:00
|
|
|
|
2018-01-18 04:32:20 -05:00
|
|
|
1. Navigate to `$GOPATH/src/github.com/hashicorp/packer`
|
|
|
|
2. Add the remote by running
|
|
|
|
`git remote add <name of remote> <github url of fork>`. For example:
|
|
|
|
`git remote add mwhooker https://github.com/mwhooker/packer.git`.
|
2017-02-09 22:25:09 -05:00
|
|
|
3. Checkout a feature branch: `git checkout -b new-feature`
|
|
|
|
4. Make changes
|
2018-01-18 04:32:20 -05:00
|
|
|
5. (Optional) Push your changes to the fork:
|
|
|
|
`git push -u <name of remote> new-feature`
|
2017-02-09 22:25:09 -05:00
|
|
|
|
2018-01-18 04:32:20 -05:00
|
|
|
This way you can push to your fork to create a PR, but the code on disk still
|
|
|
|
lives in the spot where the go cli tools are expecting to find it.
|
2017-02-09 22:25:09 -05:00
|
|
|
|
2016-10-03 16:49:46 -04:00
|
|
|
#### Govendor
|
2016-02-05 17:21:10 -05:00
|
|
|
|
2018-01-18 04:32:20 -05:00
|
|
|
If you are submitting a change that requires new or updated dependencies, please
|
|
|
|
include them in `vendor/vendor.json` and in the `vendor/` folder. This helps
|
|
|
|
everything get tested properly in CI.
|
2016-05-09 20:17:16 -04:00
|
|
|
|
2018-01-18 04:32:20 -05:00
|
|
|
Note that you will need to use [govendor](https://github.com/kardianos/govendor)
|
|
|
|
to do this. This step is recommended but not required; if you don't use govendor
|
|
|
|
please indicate in your PR which dependencies have changed and to what versions.
|
2016-02-05 17:21:10 -05:00
|
|
|
|
2016-10-05 17:15:57 -04:00
|
|
|
Use `govendor fetch <project>` to add dependencies to the project. See
|
2018-01-18 04:32:20 -05:00
|
|
|
[govendor quick start](https://github.com/kardianos/govendor#quick-start-also-see-the-faq)
|
|
|
|
for examples.
|
2016-10-05 17:15:57 -04:00
|
|
|
|
2018-01-18 04:32:20 -05:00
|
|
|
Please only apply the minimal vendor changes to get your PR to work. Packer does
|
|
|
|
not attempt to track the latest version for each dependency.
|
2016-05-09 20:19:11 -04:00
|
|
|
|
2016-02-05 17:21:10 -05:00
|
|
|
#### Running Unit Tests
|
|
|
|
|
|
|
|
You can run tests for individual packages using commands like this:
|
|
|
|
|
2018-01-18 04:32:20 -05:00
|
|
|
```
|
2018-01-23 17:33:40 -05:00
|
|
|
make test TEST=./builder/amazon/...
|
2018-01-18 04:32:20 -05:00
|
|
|
```
|
2016-02-05 17:21:10 -05:00
|
|
|
|
|
|
|
#### Running Acceptance Tests
|
|
|
|
|
|
|
|
Packer has [acceptance tests](https://en.wikipedia.org/wiki/Acceptance_testing)
|
|
|
|
for various builders. These typically require an API key (AWS, GCE), or
|
|
|
|
additional software to be installed on your computer (VirtualBox, VMware).
|
|
|
|
|
2018-01-18 04:32:20 -05:00
|
|
|
If you're working on a new builder or builder feature and want verify it is
|
|
|
|
functioning (and also hasn't broken anything else), we recommend running the
|
2016-02-05 17:21:10 -05:00
|
|
|
acceptance tests.
|
|
|
|
|
2018-01-18 04:22:23 -05:00
|
|
|
**Warning:** The acceptance tests create/destroy/modify _real resources_, which
|
2018-01-18 04:32:20 -05:00
|
|
|
may incur costs for real money. In the presence of a bug, it is possible that
|
|
|
|
resources may be left behind, which can cost money even though you were not
|
|
|
|
using them. We recommend running tests in an account used only for that purpose
|
|
|
|
so it is easy to see if there are any dangling resources, and so production
|
|
|
|
resources are not accidentally destroyed or overwritten during testing.
|
2016-02-05 17:21:10 -05:00
|
|
|
|
|
|
|
To run the acceptance tests, invoke `make testacc`:
|
|
|
|
|
2018-01-18 04:32:20 -05:00
|
|
|
```
|
2018-01-23 17:33:40 -05:00
|
|
|
make testacc TEST=./builder/amazon/ebs
|
|
|
|
...
|
2018-01-18 04:32:20 -05:00
|
|
|
```
|
2016-02-05 17:21:10 -05:00
|
|
|
|
|
|
|
The `TEST` variable lets you narrow the scope of the acceptance tests to a
|
2018-01-18 04:32:20 -05:00
|
|
|
specific package / folder. The `TESTARGS` variable is recommended to filter down
|
|
|
|
to a specific resource to test, since testing all of them at once can sometimes
|
|
|
|
take a very long time.
|
2016-02-05 17:21:10 -05:00
|
|
|
|
2018-01-08 14:54:33 -05:00
|
|
|
To run only a specific test, use the `-run` argument:
|
|
|
|
|
|
|
|
```
|
2018-01-23 17:33:40 -05:00
|
|
|
make testacc TEST=./builder/amazon/ebs TESTARGS="-run TestBuilderAcc_forceDeleteSnapshot"
|
2018-01-08 14:54:33 -05:00
|
|
|
```
|
|
|
|
|
2016-02-05 17:21:10 -05:00
|
|
|
Acceptance tests typically require other environment variables to be set for
|
2016-07-06 19:28:00 -04:00
|
|
|
things such as API tokens and keys. Each test should error and tell you which
|
2016-08-14 09:28:29 -04:00
|
|
|
credentials are missing, so those are not documented here.
|