Skip to content

Instantly share code, notes, and snippets.

@lucasponce
Created January 29, 2020 11:32
Show Gist options
  • Save lucasponce/03158b8dfd84050382d4f08fe0209e77 to your computer and use it in GitHub Desktop.
Save lucasponce/03158b8dfd84050382d4f08fe0209e77 to your computer and use it in GitHub Desktop.
Install minikube
#!/usr/bin/env bash
# Platform Setup
minikube config set vm-driver kvm2
minikube start --memory=16384 --cpus=4 --kubernetes-version=v1.14.2
minikube addons enable registry
export ISTIO_HOME=$HOME/Software/istio-1.4.3
export PATH=$PATH:$ISTIO_HOME/bin
istioctl manifest apply --set profile=demo
echo "Waiting to istio-system pods - CTRL+C to continue"
kubectl get pods -n istio-system -w
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment