Skip to content
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

Update release checklist #3334

Merged
merged 15 commits into from
Sep 6, 2023

Conversation

Kalaiselvi84
Copy link
Contributor

What type of PR is this?

Uncomment only one /kind <> line, press enter to put that in a new line, and remove leading whitespace from that line:

/kind breaking
/kind bug

/kind cleanup

/kind documentation
/kind feature
/kind hotfix
/kind release

What this PR does / Why we need it:

Which issue(s) this PR fixes:

Closes #

Special notes for your reviewer:

@github-actions github-actions bot added the kind/cleanup Refactoring code, fixing up documentation, etc label Aug 21, 2023
@agones-bot
Copy link
Collaborator

Build Succeeded 👏

Build Id: fac3f538-3d13-46bc-aa60-95c00e4dfe66

The following development artifacts have been built, and will exist for the next 30 days:

A preview of the website (the last 30 builds are retained):

To install this version:

  • git fetch https://github.com/googleforgames/agones.git pull/3334/head:pr_3334 && git checkout pr_3334
  • helm install agones ./install/helm/agones --namespace agones-system --set agones.image.registry=us-docker.pkg.dev/agones-images/ci --set agones.image.tag=1.35.0-dev-01ce648-amd64

@google-oss-prow google-oss-prow bot added approved and removed lgtm labels Aug 21, 2023
@agones-bot
Copy link
Collaborator

Build Succeeded 👏

Build Id: 2b29c565-f4b0-4bed-ac56-76ec388aec3e

The following development artifacts have been built, and will exist for the next 30 days:

A preview of the website (the last 30 builds are retained):

To install this version:

  • git fetch https://github.com/googleforgames/agones.git pull/3334/head:pr_3334 && git checkout pr_3334
  • helm install agones ./install/helm/agones --namespace agones-system --set agones.image.registry=us-docker.pkg.dev/agones-images/ci --set agones.image.tag=1.35.0-dev-39691be-amd64

@markmandel markmandel enabled auto-merge (squash) August 22, 2023 19:28
@google-oss-prow google-oss-prow bot added the lgtm label Aug 22, 2023
@google-oss-prow google-oss-prow bot removed the lgtm label Aug 22, 2023
@Kalaiselvi84 Kalaiselvi84 marked this pull request as draft August 22, 2023 21:04
auto-merge was automatically disabled August 22, 2023 21:04

Pull request was converted to draft

@Kalaiselvi84
Copy link
Contributor Author

I will follow the same approach for the helm commands that you mentioned in the other PR to create a .sh file for the Rust SDK.

@agones-bot
Copy link
Collaborator

Build Succeeded 👏

Build Id: 89912b34-b8b1-42f3-bae2-bf1d859476f1

The following development artifacts have been built, and will exist for the next 30 days:

A preview of the website (the last 30 builds are retained):

To install this version:

  • git fetch https://github.com/googleforgames/agones.git pull/3334/head:pr_3334 && git checkout pr_3334
  • helm install agones ./install/helm/agones --namespace agones-system --set agones.image.registry=us-docker.pkg.dev/agones-images/ci --set agones.image.tag=1.35.0-dev-3965047-amd64

@google-oss-prow google-oss-prow bot added size/M and removed size/XS labels Aug 22, 2023
@agones-bot
Copy link
Collaborator

Build Succeeded 👏

Build Id: 7d3ece2a-2163-4a93-8f5a-8fc51c9bc766

The following development artifacts have been built, and will exist for the next 30 days:

A preview of the website (the last 30 builds are retained):

To install this version:

  • git fetch https://github.com/googleforgames/agones.git pull/3334/head:pr_3334 && git checkout pr_3334
  • helm install agones ./install/helm/agones --namespace agones-system --set agones.image.registry=us-docker.pkg.dev/agones-images/ci --set agones.image.tag=1.35.0-dev-cb54d84-amd64

@Kalaiselvi84
Copy link
Contributor Author

Kalaiselvi84 commented Aug 23, 2023

@markmandel, I've included a shell script and a target to run the necessary helm commands for Agones update after you approve this PR. Also modified the release process based on the change. Could you please review the latest changes?

If any of the helm commands fail during the release process, the failed and remaining steps will be handled manually. Does this sound good?

Copy link
Member

@markmandel markmandel left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good, just some ideas on naming and some possible cleanup 👍🏻

build/Makefile Outdated
@@ -856,3 +856,10 @@ test-gen-crd-client:
echo "$$diff_output"; \
fi

update-agones: $(ensure-build-image)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
update-agones: $(ensure-build-image)
install-release: $(ensure-build-image)

Maybe, as a better name?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

modified here and other locations as well

build/Makefile Outdated
docker run -it --rm \
$(common_mounts) \
-w $(workdir_path) \
-e "KUBECONFIG=/root/.kube/$(kubeconfig_file)" \
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
-e "KUBECONFIG=/root/.kube/$(kubeconfig_file)" \

Is this line required? I feel like it should be where it looks by default 🤔

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

excluded this line

build/Makefile Outdated
update-agones: $(ensure-build-image)
docker run -it --rm \
$(common_mounts) \
-w $(workdir_path) \
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
-w $(workdir_path) \

Given that this is all helm commands - probably doesn't need to be in a specific work dir?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

removed this line

Copy link
Member

@markmandel markmandel left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good! Need to move it out of draft though please 😄

@google-oss-prow google-oss-prow bot added the lgtm label Aug 24, 2023
@google-oss-prow
Copy link

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: Kalaiselvi84, markmandel

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 /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@Kalaiselvi84 Kalaiselvi84 marked this pull request as ready for review August 24, 2023 22:20
@agones-bot
Copy link
Collaborator

Build Succeeded 👏

Build Id: 27290b95-99b1-4b65-b82d-1a6b38e6c62d

The following development artifacts have been built, and will exist for the next 30 days:

A preview of the website (the last 30 builds are retained):

To install this version:

  • git fetch https://github.com/googleforgames/agones.git pull/3334/head:pr_3334 && git checkout pr_3334
  • helm install agones ./install/helm/agones --namespace agones-system --set agones.image.registry=us-docker.pkg.dev/agones-images/ci --set agones.image.tag=1.35.0-dev-8572d1c-amd64

@google-oss-prow google-oss-prow bot removed the lgtm label Aug 25, 2023
@google-oss-prow
Copy link

New changes are detected. LGTM label has been removed.

@agones-bot
Copy link
Collaborator

Build Failed 😱

Build Id: e8c63aa3-9d06-4742-a695-790fdfd78286

To get permission to view the Cloud Build view, join the agones-discuss Google Group.

@agones-bot
Copy link
Collaborator

Build Succeeded 👏

Build Id: b41aeba1-2410-4e1b-af0d-391eb8e9804e

The following development artifacts have been built, and will exist for the next 30 days:

A preview of the website (the last 30 builds are retained):

To install this version:

  • git fetch https://github.com/googleforgames/agones.git pull/3334/head:pr_3334 && git checkout pr_3334
  • helm install agones ./install/helm/agones --namespace agones-system --set agones.image.registry=us-docker.pkg.dev/agones-images/ci --set agones.image.tag=1.35.0-dev-ee37487-amd64

build/Makefile Outdated
docker run -it --rm \
$(common_mounts) \
$(DOCKER_RUN_ARGS) \
$(build_tag) /go/src/agones.dev/agones/build/install-release.sh
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you add a new blank line here?

@agones-bot
Copy link
Collaborator

Build Succeeded 👏

Build Id: df73b796-868e-45cc-a963-457a29017d8e

The following development artifacts have been built, and will exist for the next 30 days:

A preview of the website (the last 30 builds are retained):

To install this version:

  • git fetch https://github.com/googleforgames/agones.git pull/3334/head:pr_3334 && git checkout pr_3334
  • helm install agones ./install/helm/agones --namespace agones-system --set agones.image.registry=us-docker.pkg.dev/agones-images/ci --set agones.image.tag=1.35.0-dev-d625a4e-amd64

@agones-bot
Copy link
Collaborator

Build Succeeded 👏

Build Id: f3eed2fc-cde5-43ab-81a0-6b675329e0df

The following development artifacts have been built, and will exist for the next 30 days:

A preview of the website (the last 30 builds are retained):

To install this version:

  • git fetch https://github.com/googleforgames/agones.git pull/3334/head:pr_3334 && git checkout pr_3334
  • helm install agones ./install/helm/agones --namespace agones-system --set agones.image.registry=us-docker.pkg.dev/agones-images/ci --set agones.image.tag=1.35.0-dev-c11704e-amd64

@markmandel markmandel enabled auto-merge (squash) September 6, 2023 19:28
@agones-bot
Copy link
Collaborator

Build Succeeded 👏

Build Id: 6234402d-11c1-42ee-9e4b-6e540e9fc530

The following development artifacts have been built, and will exist for the next 30 days:

A preview of the website (the last 30 builds are retained):

To install this version:

  • git fetch https://github.com/googleforgames/agones.git pull/3334/head:pr_3334 && git checkout pr_3334
  • helm install agones ./install/helm/agones --namespace agones-system --set agones.image.registry=us-docker.pkg.dev/agones-images/ci --set agones.image.tag=1.35.0-dev-4df375b-amd64

@markmandel markmandel merged commit e5ce5ab into googleforgames:main Sep 6, 2023
2 checks passed
@Kalaiselvi84 Kalaiselvi84 deleted the update-rel-checklist branch March 15, 2024 01:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
approved kind/cleanup Refactoring code, fixing up documentation, etc size/M
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants