This doc explains the development workflow so you can get started contributing to Skaffold!
First you will need to setup your GitHub account and create a fork:
Once you have those, you can iterate on skaffold:
- Build your dev version of skaffold
- Verify changes locally
- Run skaffold tests
- Build docs if you are making doc changes
When you're ready, you can create a PR!
You may also be interested in contributing to the docs.
The Go tools require that you clone the repository to the src/github.com/GoogleContainerTools/skaffold
directory
in your GOPATH
.
To check out this repository:
-
Create your own fork of this repo
-
Clone it to your machine:
mkdir -p ${GOPATH}/src/github.com/GoogleContainerTools cd ${GOPATH}/src/github.com/GoogleContainerTools git clone [email protected]:${YOUR_GITHUB_USERNAME}/skaffold.git cd skaffold git remote add upstream [email protected]:GoogleContainerTools/skaffold.git git remote set-url --push upstream no_push
Adding the
upstream
remote sets you up nicely for regularly syncing your fork.
To build with your local changes you have two options:
-
Build the skaffold binary:
make ./out/skaffold version
You can then run this binary directly, or copy/symlink it into your path.
-
Build and install the skaffold binary:
make install skaffold version
This will install skaffold via
go install
(note that if you have manually downloaded and installed skaffold to/usr/bin/local
, this is will probably take precedence in your path over your$GOPATH/bin
).If you are unsure if you are running a released or locally built version of skaffold, you can run
skaffold version
- output which includesdirty
indicates you have built the binary locally.
If you are iterating on skaffold and want to see your changes in action, you can:
skaffold has both unit tests and integration tests.
The unit tests live with the code they test and can be run with:
make test
These tests will not run correctly unless you have checked out your fork into your $GOPATH
.
The integration tests live in integration
and run the examples
as tests. They can be run with:
make integration-test
These tests require push access to a project in GCP, and so can only be run by maintainers who have access. These tests will be kicked off by reviewers for submitted PRs.
The latest version of the skaffold site is based on the Hugo theme of the github.com/google/docsy template.
Before creating a PR with doc changes, we recommend that you locally verify the generated docs with:
make preview-docs
Once PRs with doc changes are merged, they will get automatically published to the docs for the latest build to https://skaffold-latest.firebaseapp.com. which at release time will be published with the latest release to https://skaffold.dev.
Mark your PR with docs-modifications
label. Our PR review process will answer in comments in ~5 minutes with the URL of your preview and will remove the label.
Skaffold release process works with Google Cloud Build within our own project k8s-skaffold
and the skaffold release bucket, gs://skaffold
.
In order to be able to iterate/fix the release process you can pass in your own project and bucket as parameters to the build.
We continuously release builds under gs://skaffold/builds
. This is done by triggering cloudbuild.yaml
on every push to master.
To run a build on your own project:
gcloud builds submit --config deploy/cloudbuild.yaml --substitutions=_RELEASE_BUCKET=<personal-bucket>,COMMIT_SHA=$(git rev-parse HEAD) --project <personalproject>
We release stable versions under gs://skaffold/releases
. This is done by triggering cloudbuild-release.yaml
on every new tag in our Github repo.
To test a release on your own project:
gcloud builds submit --config deploy/cloudbuild-release.yaml --substitutions=_RELEASE_BUCKET=<personal-bucket>,TAG_NAME=testrelease_v1234 --project <personalproject>
Note: if gcloud submit fails with something similar to the error message below, run dep ensure && dep prune
to remove the broken symlinks
ERROR: gcloud crashed (OSError): [Errno 2] No such file or directory: './vendor/github.com/karrick/godirwalk/testdata/symlinks/file-symlink'
To just run a release without Google Cloud Build only using your local Docker daemon, you can run:
make -j release GCP_PROJECT=<personalproject> RELEASE_BUCKET=<personal-bucket>
When you have changes you would like to propose to skaffold, you will need to:
- Ensure the commit message(s) describe what issue you are fixing and how you are fixing it (include references to issue numbers if appropriate)
- Create a pull request
Each PR must be reviewed by a maintainer. This maintainer will add the kokoro:run
label
to a PR to kick of the integration tests, which must pass for the PR
to be submitted.