Added delete command documentation

pull/5548/head
Pranav Jituri 2019-10-20 13:24:15 +05:30
parent b3ccd9ae46
commit 3ff4c44220
No known key found for this signature in database
GPG Key ID: 009BB1DF4550490B
1 changed files with 24 additions and 0 deletions

View File

@ -18,6 +18,30 @@ associated files.
minikube delete [flags]
```
##### Delete all profiles
```
minikube delete --all
```
##### Delete profile & `.minikube` directory
Do note that the following command only works if you have only 1 profile. If there are multiple profiles, the command will error out.
```
minikube delete --purge
```
##### Delete all profiles & `.minikube` directory
This will delete all the profiles and `.minikube` directory.
```
minikube delete --purge --all
```
### Flags
```
--all: Set flag to delete all profiles
--purge: Set this flag to delete the '.minikube' folder from your user directory.
```
### Options inherited from parent commands
```