Get ambient mesh running in your cluster in just a few commands.
# Install Istio with ambient profile
istioctl install --set values.pilot.env.EXTERNAL_ISTIOD=false \
--set values.istiodRemote.enabled=false \
--set values.pilot.env.ENABLE_WORKLOAD_ENTRY_AUTOREGISTRATION=true \
--set values.ztunnel.enabled=true
# Enable ambient mode for a namespace
kubectl label namespace default istio.io/dataplane-mode=ambient
# Deploy your application
kubectl apply -f your-app.yaml