Skip to content

Commit

Permalink
Adding Docker for Desktop Instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick-Harvey committed Dec 6, 2018
1 parent 0589d4a commit 8b4b375
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 1 deletion.
Binary file added doc/getting_started/DFD_Reset_K8s.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added doc/getting_started/Docker_Desktop_Enable_k8s.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 18 additions & 1 deletion doc/getting_started/local_installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This guide will walk you through the recommended path to get Pachyderm running l
If you hit any errors not covered in this guide, check our [troubleshooting](http://pachyderm.readthedocs.io/en/stable/getting_started/troubleshooting.html) docs for common errors, submit an issue on [GitHub](https://github.com/pachyderm/pachyderm), join our [users channel on Slack](http://slack.pachyderm.io/), or email us at [support@pachyderm.io](mailto:support@pachyderm.io) and we can help you right away.

## Prerequisites
- [Minikube](#minikube) (and VirtualBox)
- [Minikube](#minikube) (and VirtualBox) or [Docker Desktop (v18.06+)](#dockerdesktop)
- [Pachyderm Command Line Interface](#pachctl)

### Minikube
Expand All @@ -16,6 +16,23 @@ minikube start

Note: Any time you want to stop and restart Pachyderm, you should start fresh with `minikube delete` and `minikube start`. Minikube isn't meant to be a production environment and doesn't handle being restarted well without a full wipe.

### Docker Desktop
First you need to make sure kubernetes is enabled in the docker desktop settings

![Docker Desktop Enable K8s](Docker_Desktop_Enable_k8s.png)

And then confirm things are running

```
$ kubectl get all
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
service/kubernetes ClusterIP 10.96.0.1 <none> 443/TCP 56d
```

To reset your kubernetes cluster on Docker For Desktop just click the reset button in the preferences section

![Reset K8s](DFD_Reset_K8s.png)

### Pachctl

`pachctl` is a command-line utility used for interacting with a Pachyderm cluster.
Expand Down

0 comments on commit 8b4b375

Please sign in to comment.