-
Notifications
You must be signed in to change notification settings - Fork 4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7734 from raywainman/release-instructions-fixes
Tweaks to VPA release instructions.
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,14 +53,14 @@ branch. This makes sure you have no local changes while building the images. | |
For example: | ||
```sh | ||
git clone [email protected]:kubernetes/autoscaler.git | ||
git switch vpa-release-1.0 | ||
git switch vpa-release-1.${minor} | ||
``` | ||
|
||
Once in the freshly cloned repo, build and stage the images. | ||
|
||
```sh | ||
cd vertical-pod-autoscaler/ | ||
for component in recommender updater admission-controller ; do TAG=`grep 'const VerticalPodAutoscalerVersion = ' common/version.go | cut -d '"' -f 2` REGISTRY=gcr.io/k8s-staging-autoscaling make release --directory=pkg/${component}; done | ||
for component in recommender updater admission-controller ; do TAG=`grep 'const versionCore = ' common/version.go | cut -d '"' -f 2` REGISTRY=gcr.io/k8s-staging-autoscaling make release --directory=pkg/${component}; done | ||
``` | ||
|
||
## Test the release | ||
|