Fix tls-check output example (#5608)

* Fix tls-check output example

* Fix spacing
This commit is contained in:
Diem Vu 2019-11-11 15:54:54 -08:00 committed by Istio Automation
parent 7251f1fe82
commit 822701661d
2 changed files with 4 additions and 4 deletions

View File

@ -93,8 +93,8 @@ In the following example output you can see that:
* Istio has the `default` destination rule in the `istio-system` namespace.
{{< text plain >}}
HOST:PORT STATUS SERVER CLIENT AUTHN POLICY DESTINATION RULE
httpbin.default.svc.cluster.local:8000 OK mTLS mTLS /default istio-system/default
HOST:PORT STATUS SERVER CLIENT AUTHN POLICY DESTINATION RULE
httpbin.default.svc.cluster.local:8000 OK STRICT ISTIO_MUTUAL /default istio-system/default
{{< /text >}}
The output shows:

View File

@ -7,8 +7,8 @@ The [`istioctl`](/docs/reference/commands/istioctl) command provides an option f
{{< text bash >}}
$ istioctl authn tls-check $CLIENT_POD httpbin.default.svc.cluster.local
HOST:PORT STATUS SERVER CLIENT AUTHN POLICY DESTINATION RULE
httpbin.default.svc.cluster.local:8000 OK mTLS mTLS /default istio-system/default
HOST:PORT STATUS SERVER CLIENT AUTHN POLICY DESTINATION RULE
httpbin.default.svc.cluster.local:8000 OK STRICT ISTIO_MUTUAL /default istio-system/default
{{< /text >}}
Where `$CLIENT_POD` is the ID of one of the client service's pods.