Skip to content

Instantly share code, notes, and snippets.

@diegopacheco
Created September 5, 2017 17:29
Show Gist options
  • Save diegopacheco/8712a9102115474546c12cefdef1dd15 to your computer and use it in GitHub Desktop.
Save diegopacheco/8712a9102115474546c12cefdef1dd15 to your computer and use it in GitHub Desktop.
Minikube + Istio + Rancher
minikube start
helm repo add incubator http://storage.googleapis.com/kubernetes-charts-incubator
helm install -n istio incubator/istio
kubectl apply -f <(istioctl kube-inject -f samples/apps/bookinfo/bookinfo.yaml)
git clone https://github.com/diegopacheco/rancher-istio.git
cd rancher-istio/
kubectl get services istio-ingress -o wide

export POD_NAME=$(kubectl get pods --namespace default -l "component=istio-istio-grafana" -o jsonpath="{.items[0].metadata.name}")
kubectl port-forward $POD_NAME 3000:3000 --namespace default

goto: http://localhost:3000/dashboard/db/istio-dashboard

@diegopacheco
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment