1.3 KiB
| title | description | weight | skip_seealso | keywords | |||
|---|---|---|---|---|---|---|---|
| Minikube | Instructions to setup Minikube for use with Istio. | 15 | true |
|
Follow these instructions to prepare Minikube for Istio.
-
To run Istio locally, install the latest version of Minikube, version 0.28.1 or later.
-
Select a VM driver and substitute
your_vm_driver_choicebelow with the installed virtual machine (VM) driver. To install Istio control plane components and addons, as well as other applications, we recommend starting Minikube with 8192MBof memory and 4CPUs:On Kubernetes 1.9:
{{< text bash >}} $ minikube start --memory=8192 --cpus=4 --kubernetes-version=v1.9.4
--extra-config=apiserver.admission-control="NamespaceLifecycle,LimitRanger,ServiceAccount,PersistentVolumeLabel,DefaultStorageClass,DefaultTolerationSeconds,MutatingAdmissionWebhook,ValidatingAdmissionWebhook,ResourceQuota"
--vm-driver=your_vm_driver_choice{{< /text >}}On Kubernetes 1.10:
{{< text bash >}} $ minikube start --memory=8192 --cpus=4 --kubernetes-version=v1.10.0
--vm-driver=your_vm_driver_choice{{< /text >}}