Skip to content
This repository has been archived by the owner on Jan 3, 2022. It is now read-only.

Commit

Permalink
Adding bootstrapper note (#20)
Browse files Browse the repository at this point in the history
* Adding bootstrapper note

- changing minikube command to use `--bootstrapper=localkube`
  • Loading branch information
trisberg authored Apr 13, 2018
1 parent dc58671 commit 251cab8
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion _docs/010-getting-started-on-minikube.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,15 @@ Installing [Docker Community Edition](https://www.docker.com/community-edition)
[Minikube](https://kubernetes.io/docs/tasks/tools/install-minikube/) is a Kubernetes environment which runs in a single virtual machine. See the [latest release](https://github.com/kubernetes/minikube/releases) for installation, and the [readme](https://github.com/kubernetes/minikube/blob/master/README.md) for more detailed information.

### start your minikube cluster

**NOTE:** _Beginning with Minikube v0.26.0 the default bootstrapper has changed to kubeadm which enables RBAC.
Since our instructions currently depend on RBAC not being enabled you should use the localkube bootstrapper
when creating the cluster._

```sh
minikube start --memory=4096
minikube start --memory=4096 --bootstrapper=localkube
```

Once minikube is running you can open a browser-based dashboard with `minikube dashboard`.

### configure docker to build containers in minikube
Expand Down

0 comments on commit 251cab8

Please sign in to comment.