-
Notifications
You must be signed in to change notification settings - Fork 149
Adds Delete Elastic Cloud on Kubernetes section #1050
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
Changes from 1 commit
1de42f3
538cd1c
85e42cd
03459d3
4fdfcf7
26cb5d3
79b6c46
dc2c8a0
41f33b1
5a11e61
aff8314
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ applies_to: | |
serverless: | ||
--- | ||
|
||
# Delete an Enterprise or Hosted deployment or a Serverless project | ||
# Delete a cloud deployment | ||
|
||
This page provides instructions for deleting several types of cloud deployments, and outlines key considerations before proceeding. | ||
kosabogi marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
||
|
@@ -90,3 +90,31 @@ To restore a terminated deployment, | |
Narrow the list by name, ID, or choose from several other filters. To further define the list, use a combination of filters. | ||
3. In the **Deployment Management** section, select **Restore** and then acknowledge the confirmation message. | ||
|
||
## {{eck}} [elastic-cloud-kubernetes] | ||
|
||
To delete a deployment managed by {{eck}}, you need to remove the corresponding custom resource from your Kubernetes cluster. This action deletes all {{es}} and {{kib}} pods and their associated persistent data. | ||
|
||
kosabogi marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
To delete an Elasticsearch deployment created with {{eck}}: | ||
kosabogi marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
||
1. Run the following command to delete the {{es}} custom resource: | ||
|
||
```shell | ||
kubectl delete elasticsearch <deployment-name> | ||
kosabogi marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
``` | ||
For example: | ||
|
||
```shell | ||
kubectl delete elasticsearch test-deployment | ||
``` | ||
|
||
This deletes the custom resource and all associated infrastructure, such as {{es}} nodes, services, and persistent data volumes. | ||
|
||
|
||
2. If you also deployed {{kib}} or other stack components, delete those resources as well: | ||
|
||
```shell | ||
kubectl delete kibana <kibana-resource-name> | ||
``` | ||
|
||
:::{{tip}} | ||
To fully uninstall {{eck}} from your cluster including all managed resources and the ECK operator, refer to the [Uninstall Elastic Cloud on Kubernetes](/deploy-manage/uninstall/uninstall-elastic-cloud-on-kubernetes.md) guide. | ||
kosabogi marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
::: |
Uh oh!
There was an error while loading. Please reload this page.