diff --git a/content/docs/tasks/traffic-management/circuit-breaking/index.md b/content/docs/tasks/traffic-management/circuit-breaking/index.md index 7a6f128673..9600d03e5d 100644 --- a/content/docs/tasks/traffic-management/circuit-breaking/index.md +++ b/content/docs/tasks/traffic-management/circuit-breaking/index.md @@ -40,6 +40,8 @@ configuration by intentionally "tripping" the circuit breaker. 1. Create a [destination rule](/docs/reference/config/istio.networking.v1alpha3/#DestinationRule) to apply circuit breaking settings when calling the `httpbin` service: + > If you installed/configured Istio with mutual TLS Authentication enabled, you must add a TLS traffic policy `mode: ISTIO_MUTUAL` to the `DestinationRule` before applying it. Otherwise requests will generate 503 errors as described [here](/help/ops/traffic-management/deploy-guidelines/#503-errors-after-setting-destination-rule). + {{< text bash >}} $ cat < If you installed/configured Istio with mutual TLS Authentication enabled, you must add a TLS traffic policy `mode: ISTIO_MUTUAL` to the `DestinationRule` before applying it. Otherwise requests will generate 503 errors as described [here](/help/ops/traffic-management/deploy-guidelines/#503-errors-after-setting-destination-rule). + {{< text bash >}} $ cat <}} - > NOTE: If you installed/configured Istio with mutual TLS Authentication enabled, you must add the [TLSSettings.TLSmode]( /docs/reference/config/istio.networking.v1alpha3/#TLSSettings-TLSmode), `mode: ISTIO_MUTUAL` as noted in the [TLSSettings](/docs/reference/config/istio.networking.v1alpha3/#TLSSettings) reference. - Now all traffic goes to the `httpbin v1` service. 1. Send some traffic to the service: @@ -266,4 +266,4 @@ log entries for `v1` and none for `v2`: 1. If you are not planning to explore any follow-on tasks, refer to the [Bookinfo cleanup](/docs/examples/bookinfo/#cleanup) instructions - to shutdown the application. \ No newline at end of file + to shutdown the application.