istio circuit breaker - setup and analysis
We will lable our default namespace to turn on ambient support. kubectl label ns default istio.io/dataplane-mode=ambient Next we will deploy our httpbin workload kubectl apply -f https://raw.githubusercontent.com/istio/istio/release-1.26/samples/httpbin/httpbin.yaml kubectl apply -f https://raw.githubusercontent.com/istio/istio/release-1.26/samples/curl/curl.yaml kubectl apply -f https://raw.githubusercontent.com/istio/istio/release-1.26/samples/httpbin/sample-client/fortio-deploy.yaml Deploying waypoint for default namespace istioctl waypoint apply -n default --enroll-namespace --wait And we will apply this to turn on telemetry and logging apiVersion : telemetry.istio.io/v1 kind : Telemetry metadata : name : enable-access-logging namespace : default spec : accessLogging : - providers : - name : envoy Next, lets verify the logs are coming through kubectl logs --follow deploy/waypoint When we run the command below,...