-
Notifications
You must be signed in to change notification settings - Fork 738
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2837d44
commit e4da4a3
Showing
5 changed files
with
82 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# Flagger Release Guide | ||
|
||
This document describes how to release Flagger. | ||
|
||
### Release | ||
|
||
To release a new Flagger version (e.g. `2.0.0`) follow these steps: | ||
* create a branch `git checkout -b prep-2.0.0` | ||
* set the version in code and manifests `TAG=2.0.0 make version-set` | ||
* commit changes and merge PR | ||
* checkout master `git checkout master && git pull` | ||
* tag master `make release` | ||
|
||
### CI | ||
|
||
After the tag has been pushed to GitHub, the CI release pipeline does the following: | ||
* creates a GitHub release | ||
* pushes the Flagger binary and change log to GitHub release | ||
* pushes the Flagger container image to Docker Hub | ||
* pushes the Helm chart to github-pages branch | ||
* GitHub pages publishes the new chart version on the Helm repository | ||
|
||
### Docs | ||
|
||
The documentation [website](https://docs.flagger.app) is built from the `docs` branch. | ||
|
||
After a Flagger release, publish the docs with: | ||
* `git checkout master && git pull` | ||
* `git checkout docs` | ||
* `git rebase master` | ||
* `git push origin docs` | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters