-
Notifications
You must be signed in to change notification settings - Fork 9.8k
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
Plan to release etcd v3.5.14 #18013
Comments
Using links like v3.5.13...release-3.5 is nice, but please note that they are not static, they update as the branch is moved. In previous releases I listed each issues explicitly to make sure that we have concrete list that can inspected after the release. |
Thanks yeah they are mutable until tag is published, once tag is published we can compare actual immutable list of commits, i.e. v3.5.12...v3.5.13 I have link to draft changelog and also the header for proposed issues still needing backport which I will add to shortly:
|
Updated planning for this release below: Release team
Backports I have identified one required backport this morning and added to the list above. @ivanvc will also review and suggest any. @serathius are there any recent robustness related merges to Required backports will be discussed at triage tomorrow so we can invite the community to help get these completed in advance of the release date. Release date Discussed with @ivanvc today. We are both available 11:00 Pacific Time next Tuesday 28th or Wednesday 29th. @serathius would one of those options work for you for the call to cut the release? If so I will send the calendar invite. |
I did a sweep of issues and pull requests from the main branch since v3.5.13, and couldn't find any other possible candidates for being backported. |
@jmhbnz, @serathius, have we agreed on a date for the release? |
Please reach out to me on Slack to setup the meeting. |
etcd v3.5.14 is now public https://github.com/etcd-io/etcd/releases/tag/v3.5.14 Thanks to everyone who contributed to the release. I will leave this issue open for now as there are two release process improvement we would like to pursue following this release:
|
I'm currently testing this. |
I tried with
|
I don't have a way to test this. So, I don't want to raise the PR. But, from the documentation it seems like it should be possible to pass a path. Refer to: https://cloud.google.com/storage/docs/gsutil/commands/acl#set-options
And https://cloud.google.com/storage/docs/gsutil/commands/acl#ch-examples
|
So there are two instances where Line 246 in bf51a53
The above reference is ok as this is already limited to the specific etcd version being uploaded. Line 285 in bf51a53
This is the one causing log spam, as there are just over This Doing some more checking, one interesting thing is that the entire bucket seems to be already marked as fully public: I confirmed this with james ~
➜ gsutil iam get gs://artifacts.etcd-development.appspot.com --format=json \
| jq '.bindings[].members[]' | grep allUsers
"allUsers" Based on my findings above I believe there is no point running this command every release and we can just remove that problematic line from the release script without consequence. Or at very least gate it behind a check for We would need consensus from @ahrtr and @serathius on this. |
Thanks for driving the improvement!
Sounds good, but please manually verify it. e.g.
Also what if we transition from gcr.io to Artifact Registry? |
@jmhbnz, do we have any outstanding tasks for this issue? Or should we mark it as completed? |
I have outstanding task to manually verify gcp permissions. I'll do it today so we can clear this out before Edit: Manual verification completed, steps are as follows: # 1 - Pull existing tag
➜ podman pull gcr.io/etcd-development/etcd:v3.5.14
Trying to pull gcr.io/etcd-development/etcd:v3.5.14...
Getting image source signatures
Copying blob 33e068de2649 done |
Copying blob 16100daf795a done |
Copying blob 473d8557b1b2 done |
Copying blob 7c12895b777b done |
Copying blob b6824ed73363 done |
Copying blob e33bce57de28 done |
Copying blob 5664b15f108b done |
Copying blob 27be814a09eb done |
Copying blob 4aa0ea1413d3 done |
Copying blob 9ef7d74bdfdf done |
Copying blob 9112d77ee5b1 done |
Copying blob 6105ff03ff19 done |
Copying blob e3b9bc7bbf1f done |
Copying blob 69598c05cddd done |
Copying blob ec6cb1bcc188 done |
Copying blob 105f4348d42a done |
Copying config 13b135926e done |
Writing manifest to image destination
13b135926ee29192305a1ab42861eca50d3b1b862869b8f4339743ad2fa7cc8e
# 2 - Tag with new version
➜ podman images
REPOSITORY TAG IMAGE ID CREATED SIZE
gcr.io/etcd-development/etcd v3.5.14 13b135926ee2 4 weeks ago 59.3 MB
➜ podman tag 13b135926ee2 gcr.io/etcd-development/etcd:v9.9.99
➜ podman images
REPOSITORY TAG IMAGE ID CREATED SIZE
gcr.io/etcd-development/etcd v9.9.99 13b135926ee2 4 weeks ago 59.3 MB
gcr.io/etcd-development/etcd v3.5.14 13b135926ee2 4 weeks ago 59.3 MB
# 3 - Push new bogus tag
➜ podman push gcr.io/etcd-development/etcd:v9.9.99
Getting image source signatures
Copying blob 16100daf795a skipped: already exists
Copying blob 33e068de2649 skipped: already exists
Copying blob e33bce57de28 skipped: already exists
Copying blob 473d8557b1b2 skipped: already exists
Copying blob 5664b15f108b skipped: already exists
Copying blob 27be814a09eb skipped: already exists
Copying blob 7c12895b777b skipped: already exists
Copying blob b6824ed73363 skipped: already exists
Copying blob 4aa0ea1413d3 skipped: already exists
Copying blob 9ef7d74bdfdf skipped: already exists
Copying blob 9112d77ee5b1 skipped: already exists
Copying blob 6105ff03ff19 skipped: already exists
Copying blob e3b9bc7bbf1f skipped: already exists
Copying blob 69598c05cddd skipped: already exists
Copying blob ec6cb1bcc188 skipped: already exists
Copying blob 105f4348d42a skipped: already exists
Copying config 13b135926e done |
Writing manifest to image destination
# 4 - Confirm new tag can be pulled after clearing locally
➜ podman image prune -a
WARNING! This command removes all images without at least one container associated with them.
Are you sure you want to continue? [y/N] y
127196816bd0fa8d67a01aecf5f5987c7b289fa2c5b0f5dc2cd5c3fa54c0e46b
13b135926ee29192305a1ab42861eca50d3b1b862869b8f4339743ad2fa7cc8e
➜ podman pull gcr.io/etcd-development/etcd:v9.9.99
Trying to pull gcr.io/etcd-development/etcd:v9.9.99...
Getting image source signatures
Copying blob 16100daf795a done |
Copying blob 33e068de2649 done |
Copying blob e33bce57de28 done |
Copying blob 473d8557b1b2 done |
Copying blob b6824ed73363 done |
Copying blob 7c12895b777b done |
Copying blob 5664b15f108b done |
Copying blob 27be814a09eb done |
Copying blob 4aa0ea1413d3 done |
Copying blob 9ef7d74bdfdf done |
Copying blob 9112d77ee5b1 done |
Copying blob 6105ff03ff19 done |
Copying blob e3b9bc7bbf1f done |
Copying blob 69598c05cddd done |
Copying blob ec6cb1bcc188 done |
Copying blob 105f4348d42a done |
Copying config 13b135926e done |
Writing manifest to image destination
13b135926ee29192305a1ab42861eca50d3b1b862869b8f4339743ad2fa7cc8e After pushing the above bogus tag I can confirm it has automatically been marked as public: I've now deleted the bogs tag to clean up. Will raise the pr shortly to to update our release script. |
What would you like to be added?
What would you like to be added?
The etcd patch release criteria has been met for our
release-3.5
stable release branch so we should releasev3.5.14
.The list of commits included since the previous release is: v3.5.13...release-3.5
Work in progress CHANGELOG is: https://github.com/etcd-io/etcd/blob/main/CHANGELOG/CHANGELOG-3.5.md#v3514-tbd
List of pull requests we still need to backport from
main
torelease-3.5
before the patch release is issued:Why is this needed?
Regular patch releases are vital to ensure our users have bug free and secure software.
The text was updated successfully, but these errors were encountered: