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

Move SplitControllerAndExtensions to Stable #3523

Merged

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 #3513

Special notes for your reviewer:

@github-actions github-actions bot added the kind/feature New features for Agones label Nov 29, 2023
@agones-bot
Copy link
Collaborator

Build Failed 😱

Build Id: 257045cc-24a3-4425-be2b-51fede3c6639

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

@google-oss-prow google-oss-prow bot added size/L and removed size/M labels Nov 30, 2023
@agones-bot
Copy link
Collaborator

Build Failed 😱

Build Id: ab945e6e-c7fb-4438-b74e-ee7494c78e6b

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

@markmandel
Copy link
Member

Aha! Found it!

docker run --rm -v /workspace/build//.config/gcloud:/root/.config/gcloud -v ~/.kube/:/root/.kube -v ~/.config/helm:/root/.config/helm -v ~/.cache/helm:/root/.cache/helm -v /workspace:/go/src/agones.dev/agones -v /workspace/build//.gomod:/go/pkg/mod -v /workspace/build//.gocache:/root/.cache/go-build  agones-build:83141ac095 bash -c \
	'helm template agones-manual --namespace agones-system /go/src/agones.dev/agones/install/helm/agones \
	--set agones.controller.generateTLS=false \
	--set agones.allocator.generateTLS=false \
	--set agones.allocator.generateClientTLS=false \
	--set agones.crds.cleanupOnDelete=false \
	> /go/src/agones.dev/agones/install/yaml/install.yaml'
make[1]: Leaving directory '/workspace/build'
sort /workspace/install/yaml/install.yaml > /tmp/agones-install/install.current.yaml.sorted
diff /tmp/agones-install/install.yaml.sorted /tmp/agones-install/install.current.yaml.sorted
7a8,9
> 
> 
make: *** [Makefile:408: test-install-yaml] Error 1
make: *** Waiting for unfinished jobs....

Need to run make gen-install 😄

@Kalaiselvi84
Copy link
Contributor Author

Need to run make gen-install 😄

This command added two extra spaces. Could this be causing the build to fail?🤔

@agones-bot
Copy link
Collaborator

Build Succeeded 👏

Build Id: a2088f26-db63-4828-ad16-534819c5c577

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/3523/head:pr_3523 && git checkout pr_3523
  • 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.37.0-dev-e3cfe0e-amd64

@markmandel
Copy link
Member

This command added two extra spaces. Could this be causing the build to fail?🤔

Yeah it will - any difference will cause it to fail 👍🏻

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.

Except for one question, this looks good to me. @zmerlynn can you also look over as well please, since you are more familiar with this work?

@zmerlynn
Copy link
Collaborator

zmerlynn commented Dec 4, 2023

Looks great! Sorry I missed this earlier.

Copy link

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by: Kalaiselvi84, zmerlynn
Once this PR has been reviewed and has the lgtm label, please assign roberthbailey for approval. For more information see the Kubernetes Code Review Process.

The full list of commands accepted by this bot can be found 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

Copy link

New changes are detected. LGTM label has been removed.

@google-oss-prow google-oss-prow bot removed the lgtm label Dec 4, 2023
@zmerlynn zmerlynn enabled auto-merge (squash) December 4, 2023 23:38
@agones-bot
Copy link
Collaborator

Build Succeeded 👏

Build Id: 25cf38aa-5ca4-4adf-b439-44d7d3234021

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/3523/head:pr_3523 && git checkout pr_3523
  • 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.37.0-dev-8ac81d9-amd64

@agones-bot
Copy link
Collaborator

Build Failed 😱

Build Id: 246a3ba2-b61a-4e12-a13c-3c62ba2c2f68

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

@markmandel
Copy link
Member

Oooh, we got some link failures! You can run make lint to test locally.

@Kalaiselvi84
Copy link
Contributor Author

Oooh, we got some link failures! You can run make lint to test locally.

Fixed it. Something messed up when resolving the conflict.

@agones-bot
Copy link
Collaborator

Build Succeeded 👏

Build Id: 5e993187-845d-4447-8a83-bc54db33085d

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/3523/head:pr_3523 && git checkout pr_3523
  • 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.37.0-dev-2c21187-amd64

@zmerlynn zmerlynn merged commit 6d5b2e8 into googleforgames:main Dec 5, 2023
3 checks passed
@Kalaiselvi84 Kalaiselvi84 deleted the SplitControllerAndExtensions branch March 15, 2024 01:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
kind/feature New features for Agones size/L
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Move SplitControllerAndExtensions to Stable
4 participants