Skip to content

Instantly share code, notes, and snippets.

@lucasponce
Created January 28, 2020 15:58
Show Gist options
  • Save lucasponce/0fd4b20514ab7e96d4387b2f59194ec9 to your computer and use it in GitHub Desktop.
Save lucasponce/0fd4b20514ab7e96d4387b2f59194ec9 to your computer and use it in GitHub Desktop.
# 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.0
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
cd $ISTIO_HOME
kubectl label namespace default istio-injection=enabled
kubectl apply -f samples/bookinfo/platform/kube/bookinfo.yaml
kubectl apply -f samples/bookinfo/networking/bookinfo-gateway.yaml
kubectl get pods -n default -w
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment