istioctl ambient mode revisiting
Installing istio ambident mode on kind didn't work either for windows. It is important to have a linux machine. To get started, run the following command
istioctl install --set profile=ambient --skip-confirmation
Setup kubernetes gateway API - this will install the crds such as gatewayclass, httproute, tcproute and etc
kubectl apply -f https://github.com/kubernetes-sigs/gateway-api/releases/download/v1.2.0/standard-install.yaml
Deploying book sample app
kubectl apply -f https://raw.githubusercontent.com/istio/istio/release-1.24/samples/bookinfo/platform/kube/bookinfo.yaml
kubectl apply -f https://raw.githubusercontent.com/istio/istio/release-1.24/samples/bookinfo/platform/kube/bookinfo-versions.yaml
Enable ambient mode for a namespace can be setup by running the following codes.
kubectl label namespace default istio.io/dataplane-mode=ambient
if you run istioctl waypoint list and istioctl waypoint status, you will get some outputs shown below instead of empty responses.
Comments