-
Notifications
You must be signed in to change notification settings - Fork 10.1k
Add instruction to change golang version when building image #19753
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
Hi @joshjms. Thanks for your PR. I'm waiting for a etcd-io member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
Hi @ahrtr , I have in the documentation
I'll changed the last sentence to
|
cf2e00a
to
6949c38
Compare
@@ -66,7 +66,7 @@ You can refer to the guide [here](https://github.com/kubernetes/community/blob/m | |||
match: BUNDLED_ETCD_VERSIONS\?| | |||
``` | |||
|
|||
2. In `cluster/images/etcd/Makefile`, include the new version in `BUNDLED_ETCD_VERSIONS` and update the `LATEST_ETCD_VERSION` as well (the image tag will be generated from the `LATEST_ETCD_VERSION`). Update `GOLANG_VERSION` if necessary. | |||
2. In `cluster/images/etcd/Makefile`, include the new version in `BUNDLED_ETCD_VERSIONS` and update the `LATEST_ETCD_VERSION` as well (the image tag will be generated from the `LATEST_ETCD_VERSION`). Update `GOLANG_VERSION` according to the version used to compile that release version (can be seen in the CHANGELOG). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We need to update the go version in build/dependencies.yaml
if needed, and ensure the go version matches the go version used in cluster/images/etcd/Makefile
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- In
build/dependencies.yaml
, update theversion
ofetcd-image
andgolang: etcd release version
to the new version.
It appears I didn't add an example for that. I made the instruction clearer and added an example below it. PTAL!
6949c38
to
e306f09
Compare
can you please squash the commits? |
Ohh sorry" I forgot. Done! |
Signed-off-by: joshjms <[email protected]>
e306f09
to
08c09be
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Thanks
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: ahrtr, joshjms The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
/ok-to-test |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted filessee 22 files with indirect coverage changes @@ Coverage Diff @@
## main #19753 +/- ##
=======================================
Coverage 68.79% 68.80%
=======================================
Files 421 421
Lines 35857 35858 +1
=======================================
+ Hits 24669 24673 +4
- Misses 9762 9764 +2
+ Partials 1426 1421 -5 Continue to review full report in Codecov by Sentry.
🚀 New features to boost your workflow:
|
/test pull-etcd-markdown-lint |
Add clearer description to update GOLANG_VERSION when building new etcd image.
Please read https://github.com/etcd-io/etcd/blob/main/CONTRIBUTING.md#contribution-flow.