Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
K
ksonnet
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Ijaz Ahmad
ksonnet
Commits
9d89e485
Unverified
Commit
9d89e485
authored
7 years ago
by
Angus Lees
Browse files
Options
Downloads
Patches
Plain Diff
Add CONTRIBUTING doc
parent
957019af
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
CONTRIBUTING.md
+64
-0
64 additions, 0 deletions
CONTRIBUTING.md
with
64 additions
and
0 deletions
CONTRIBUTING.md
0 → 100644
+
64
−
0
View file @
9d89e485
## Managing vendor/
This project uses
`govendor`
. To make things easier for reviewers,
put updates to
`vendor/`
in a separate commit within the same PR.
### Clean up removed/unnecessary dependencies
This is a good one to run before sending a non-trivial change for
review.
```
# See unused
govendor list +unused
# Remove unused
govendor remove +unused
```
### Add a new dependency
Make code change that imports new library, then:
```
# See missing
govendor list +missing
% govendor fetch -v +missing
```
Note pinning a library to a specific version requires extra work. In
particular, we do this for
`client-go`
and
`apimachinery`
- to find
the current version used for these libraries, look in
`vendor/vendor.json`
for the
`version`
field (not
`versionExact`
) of
an existing package. Use that same version in the commands below:
```
# For example: To pin all imported client-go packages to release v3.0
% govendor fetch -v k8s.io/client-go/...@v3.0
# *Note* the above may pull in new packages from client-go, which will
# be imported at HEAD. You need to re-run the above command until
# all imports are at the desired version.
# TODO: There is probably a better way to do this.
```
It is safe (and appropriate) to re-run
`govendor fetch`
with a
different version, if you made a mistake or missed some libraries.
## Making a Release
1.
Add appropriate tag. We do this via git (not github UI) so the tag
is signed. This process requires you to have write access to the
real master branch (not your local fork).
```
% tag=vX.Y.Z
% git fetch # update
% git tag -s -m $tag $tag origin/master
% git push origin tag $tag
```
2.
Wait for the travis autobuilders to build release binaries.
3.
*Now*
create the github release, using the existing tag created
above.
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment