Skip to content

Commit

Permalink
Merge pull request #7734 from raywainman/release-instructions-fixes
Browse files Browse the repository at this point in the history
Tweaks to VPA release instructions.
  • Loading branch information
k8s-ci-robot authored Jan 22, 2025
2 parents 5b08a02 + 1acafd8 commit 1c26181
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vertical-pod-autoscaler/RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 1c26181

Please sign in to comment.