Jul 14, 2024
kubectl label namespace default istio-injection=enabled
kubectl create -f samples/bookinfo/platform/kube/bookinfo.yaml
kubectl get all
Intra-Cluster Access:
kubectl exec -it [pod name] -- /bin/sh
curl
to verify internally accessible: curl [service name]:9080/productpage | grep '<title>'
External Access:
kubectl get service istio-ingressgateway -n istio-system
kubectl create -f samples/bookinfo/networking/bookinfo-gateway.yaml
kubectl get gateway
http://[ingress IP]/productpage