forked from kubernetes/kubernetes
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Girish Kalele
committed
May 31, 2016
1 parent
4c1047d
commit 60d2293
Showing
13 changed files
with
63 additions
and
18 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
## Version 1.2 (Fri May 27 2016 Tim Hockin <[email protected]>) | ||
- First Changelog entry |
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 |
---|---|---|
|
@@ -2,8 +2,4 @@ | |
|
||
Tim Hockin <[email protected]> | ||
|
||
|
||
[]() | ||
|
||
|
||
[]() |
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,47 @@ | ||
# Cutting a release | ||
|
||
Until we have a proper setup for building this automatically with every binary | ||
release, here are the steps for making a release. We make releases when they | ||
are ready, not on every PR. | ||
|
||
1. Build the container for testing: | ||
|
||
`make release` | ||
`cd build/kube-dns` | ||
`make container PREFIX=<your-docker-hub> TAG=rc` | ||
|
||
2. Manually deploy this to your own cluster by updating the replication | ||
controller and deleting the running pod(s). | ||
|
||
3. Verify it works. | ||
|
||
4. Update the TAG version in `Makefile` and update the `Changelog`. Update the | ||
`*.yaml.in` to point to the new tag. Send a PR but mark it as "DO NOT MERGE". | ||
|
||
5. Once the PR is approved, build and push the container for real for all architectures: | ||
|
||
```console | ||
# Build for linux/amd64 (default) | ||
$ make push ARCH=amd64 | ||
# ---> gcr.io/google_containers/kube-dns-amd64:TAG | ||
# ---> gcr.io/google_containers/kube-dns:TAG (image with backwards-compatible naming) | ||
|
||
$ make push ARCH=arm | ||
# ---> gcr.io/google_containers/kube-dns-arm:TAG | ||
|
||
$ make push ARCH=arm64 | ||
# ---> gcr.io/google_containers/kube-dns-arm64:TAG | ||
|
||
$ make push ARCH=ppc64le | ||
# ---> gcr.io/google_containers/kube-dns-ppc64le:TAG | ||
``` | ||
|
||
6. Manually deploy this to your own cluster by updating the replication | ||
controller and deleting the running pod(s). | ||
|
||
7. Verify it works. | ||
|
||
8. Allow the PR to be merged. | ||
|
||
|
||
[]() |
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
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