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

fix: write kubeconfig to default path by default #312

Merged
merged 3 commits into from
Jun 29, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/common/deprovision.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,20 @@ To destroy your kubefirst cluster, complete the following steps.

You will need to [install](http://localhost:3000/overview.md#install-the-kubefirst-cli) the `kubefirst` CLI if it is not already installed.

Before continuing, use the command-line tool for the chosen cloud provider to get the `kubeconfig` for your cluster:
Before continuing, use the command-line tool for the chosen cloud provider to get the `kubeconfig` for your cluster (replace `<my-cluster>` with your cluster name):

<!--tabs-->

# AWS

```shell
aws eks update-kubeconfig --name my-cluster --region us-east-1
aws eks update-kubeconfig --name <my-cluster> --region us-east-1
```

# Civo

```shell
civo kubernetes config my-cluster
civo kubernetes config <my-cluster> > ~/.kube/config
```
<!--/tabs-->
Expand Down