eksctl is Apache 2.0 licenced and accepts contributions via GitHub pull requests. This document outlines some of the conventions on the development workflow, commit message formatting, contact points and other resources to make it easier to get your contribution accepted.
We gratefully welcome improvements to documentation as well as to code.
By contributing to this project you agree to the Developer Certificate of Origin (DCO). This document was created by the Linux Kernel community and is a simple statement that you, as a contributor, have the legal right to make the contribution. No action from you is required, but it's a good idea to see the DCO file for details before you start contributing code to eksctl.
The project uses Slack. If you get stuck or just have a question then you are encouraged to join the Weave Community Slack workspace and use the #eksctl channel and/or the mailing list.
We use the mailing list for some discussion, potentially for sharing documents and for calendar invites.
Regular contributor meetings are held on Slack, see docs/contributor-meetings.md
for
the latest information.
- Fork the repository on GitHub
- Read the README for getting started as a user and learn how/where to ask for help
- If you want to contribute as a developer, continue reading this document for further instructions
- Play with the project, submit bugs, submit pull requests!
This project is written in Go. To be able to contribute you will need:
-
A working Go installation of Go >= 1.12. You can check the official installation guide.
-
Make sure that
$(go env GOPATH)/bin
is in your shell'sPATH
. You can do so by runningexport PATH="$(go env GOPATH)/bin:$PATH"
Make a fork of this repository and clone it by running:
git clone git@github.com:<yourusername>/eksctl.git
It is not recommended to clone under your GOPATH
(if you define one). Otherwise, you will need to set
GO111MODULE=on
explicitly.
Make sure you can run the tests and build the binary.
make install-build-deps
make test
make build
To run integration test you will need an AWS account.
make integration-test-container TEST_V=1
NOTE: If you are working on Windows, you cannot use
make
at the moment, as theMakefile
is currently not portable. However, if you have Git and Go installed, you can still build a binary and run unit tests.go build .\cmd\eksctl go test .\pkg\...
If you prefer to use Docker, the same way it is used in CI, you can use the following comands:
make -f Makefile.docker test
make -f Makefile.docker build
NOTE: It is not the most convenient way of working on the project, as binaries are built inside the container and cannot be tested manually, also majority of end-users consume binaries and not Docker images. It is recommended to use
make build
etc, unless there is an issue in CI that need troubleshooting.
-
Find an issue to work on or create your own. If you are a new contributor take a look at issues marked with good first issue.
-
Then create a topic branch from where you want to base your work (usually branched from master):
git checkout -b <feature-name>
-
Write your feature. Make commits of logical units and make sure your commit messages are in the proper format.
-
Add automated tests to cover your changes. See the az package for a good example of tests.
-
If needed, update the documentation, either in the README or in the docs folder.
-
Make sure the tests are running successfully.
Push your changes to your fork and submit a pull request to the original repository. If your PR is a work in progress
then make sure you prefix the title with WIP:
. This lets everyone know that this is still being worked on. Once its
ready remove the WIP:
title prefix and where possible squash your commits. Alternatively, you can use Draft PR
feature of Github as mentioned here
git push <username> <feature-name>
Our CircleCI integration will run the automated tests and give you feedback in the review section. We will review your changes and give you feedback as soon as possible.
These things will make a PR more likely to be accepted:
- a well-described requirement
- tests for new code
- tests for old code!
- new code and tests follow the conventions in old code and tests
- a good commit message (see below)
In general, we will merge a PR once a maintainer has reviewed and approved it. Trivial changes (e.g., corrections to spelling) may get waved through. For substantial changes, more people may become involved, and you might get asked to resubmit the PR or divide the changes into more than one PR.
We follow a rough convention for commit messages that is designed to answer two questions: what changed and why. The subject line should feature the what and the body of the commit should describe the why.
Added AWS Profile Support
Changes to ensure that AWS profiles are supported. This involved making
sure that the AWS config file is loaded (SharedConfigEnabled) and
also making sure we have a TokenProvider set.
Added an explicit --profile flag that can be used to explicitly specify
which AWS profile you would like to use. This will override any profile
that you have specified via AWS_PROFILE.
If endpoints are being overridden then the credentials from the initial
session creation are shared with any subsequent session creation to
ensure that the tokens are shared (otherwise you may get multiple MFA
prompts).
Issue #57
The format can be described more formally as follows:
<short title for what changed>
<BLANK LINE>
<why this change was made and what changed>
<BLANK LINE>
<footer>
The first line is the subject and should be no longer than 70 characters, the second line is always blank, and other lines should be wrapped at 80 characters. This allows the message to be easier to read on GitHub as well as in various git tools.
-
Ensure integration tests pass (ETA: 45 minutes ; more details below).
-
Determine the next release tag, e.g.:
- for a release candidate,
0.4.0-rc.0
, or - for a release,
0.4.0
.
- for a release candidate,
-
Create a
docs/release_notes/<tag>.md
release notes file for the given tag, e.g.:touch docs/release_notes/0.4.0.md
-
Check out the latest
master
:git checkout master git fetch origin master git merge --ff-only origin/master
-
Run:
-
for a release candidate:
./tag-release-candidate.sh <tag>-rc.<N>
, e.g.:./tag-release-candidate.sh 0.4.0-rc.0
-
for a release:
./tag-release.sh <tag>
, e.g.:./tag-release.sh 0.4.0
-
-
Ensure release jobs succeeded in CircleCI.
-
Ensure the release was successfully published in Github.
-
Download the binary just released, verify its checksum, and perform any relevant manual testing.
It's recommended to run containerised tests with make integration-test-container TEST_V=1 AWS_PROFILE="<AWS profile name>"
. The tests require:
- Access to an AWS account. If there is an issue with access (e.g. expired MFA token), you will see all tests failing (albeit the error message may be slightly unclear).
- Access to the private SSH key for the Git repository to use for testing gitops-related operations. It is recommended to extract the private SSH key available here into
~/.ssh/eksctl-bot_id_rsa
, and then let the integration tests mount this path and use this key.
When you run ./tag-release.sh <tag>
it will push a commit to master and a tag, which will trigger release workflow in Circle CI. This runs make eksctl-image
followed by make release
. Most of the logic is defined in do-release.sh
.
You want to keep an eye on Circle CI for the progress of the release (0.3.1 example logs). It normally takes around 30 minutes.
We use latest_release
floating tag, in order to enable static URLs for release artefacts, i.e. latest_release
gets shifted on every release.
That means you will see two entries on the release page: