-
Notifications
You must be signed in to change notification settings - Fork 819
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
Add Uninstall instructions when using install.yaml #1783
Add Uninstall instructions when using install.yaml #1783
Conversation
Build Succeeded 👏 Build Id: 072bb774-1309-4e65-a277-722a660da773 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:
|
Build Succeeded 👏 Build Id: c281e91e-b184-4353-a51f-b599c6881cd7 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:
|
|
||
```bash | ||
$ kubectl delete fleets --all | ||
$ kubectl delete gameservers --all |
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.
Should this be:
$ kubectl delete fleets --all --all-namespaces
$ kubectl delete gameservers --all --all-namespaces
?
Add some instructions on how to delete Agones resources and remove the namespace.
f0393fe
to
ab7b021
Compare
Build Succeeded 👏 Build Id: 475caed4-9346-4e19-8134-6bca9dc38ae0 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:
|
$ kubectl delete namespace agones-system | ||
``` | ||
|
||
Note: you should wait up to a couple of minutes until all resources described in `install.yaml` file would be deleted. |
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.
Not sure if we want to add any info for troubleshooting if you end up with the namespace in a terminating
state, WDYT?
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.
I can not reproduce an original issue if I follow these 4 commands one by one. If you can, please tell me so I can add some info into a Troubleshooting section.
I have added this Note
, because kubectl delete
is frozen up to 2 minutes before exiting. Also I saw a similar comment in a separate ticket about this being slow.
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.
You are right if you follow those commands it doesnt occour 👍 was meaning if anyone didnt uninstall correctly it would be helpful.
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.
@domgreen maybe a separate PR in https://agones.dev/site/docs/guides/troubleshooting/ ?
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.
👍
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: aLekSer, 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 |
New changes are detected. LGTM label has been removed. |
Build Succeeded 👏 Build Id: dd2dc598-f9fa-4706-8922-4fdcfa445e2c 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:
|
Add some instructions on how to delete Agones resources and remove the namespace. Co-authored-by: Mark Mandel <markmandel@google.com>
Add some instructions on how to delete Agones resources and remove the
agones-system
namespace.
What type of PR is this?
/kind documentation
What this PR does / Why we need it:
We have instructions how to
helm uninstall agones
, but there is no details on how to properly cleanup cluster, after usingkubectl apply -f ./install.yaml
Which issue(s) this PR fixes:
Closes #1778
Special notes for your reviewer:
Without
kubectl delete gameservers
andfleets
steps,kubectl delete -f
stucks on removinggameservers
CRD.