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

[Docs] Fix typos in mlrun-kit doc #577

Merged
merged 1 commit into from Dec 8, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
16 changes: 8 additions & 8 deletions docs/mlrun-kit.md
Expand Up @@ -159,7 +159,7 @@ And don't forget to clean the remaining PVCs and PVCs
Handing stuck-at-terminating pods:

```bash
helm --namespace mlrun delete pod --force --grace-period=0 <pod-name>
kubectl --namespace mlrun delete pod --force --grace-period=0 <pod-name>
```

Reclaim dangling persistency resources:
Expand All @@ -169,22 +169,22 @@ Reclaim dangling persistency resources:

```bash
# To list PVCs
helm --namespace mlrun get pvc
kubectl --namespace mlrun get pvc
...

# To remove a PVC
helm --namespace mlrun delete pvc <pvc-name>
kubectl --namespace mlrun delete pvc <pvc-name>
...

# To list PVs
helm --namespace mlrun get pv
kubectl --namespace mlrun get pv
...

# To remove a PVC
helm --namespace mlrun delete pvc <pv-name>
# To remove a PV
kubectl --namespace mlrun delete pv <pv-name>

# Remove hostpath(s) used for mlrun (and possibly nfs). Those will be created, by default under /tmp, and will contain
# Remove hostpath(s) used for mlrun (and possibly nfs). Those will be created by default under /tmp, and will contain
# your release name, e.g.:
rm -rf my-mlrun-mlrun-kit-mlrun
rm -rf /tmp/my-mlrun-mlrun-kit-mlrun
...
```