Remove mTLS since it's never discussed (#7974)

This commit is contained in:
Eric Van Norman 2020-08-19 09:46:20 -05:00 committed by GitHub
parent 20c574a1d4
commit 416e7ce17a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 10 deletions

View File

@ -17,18 +17,9 @@ can enable Istio gradually, microservice by microservice. Istio is enabled
transparently to the microservices. You do not change the microservices code or
disrupt your application, it continues to run and serve user requests.
1. Disable mutual TLS authentication in your namespace, which will be explained later in the tutorial:
1. Apply the default destination rules:
{{< text bash >}}
$ kubectl apply -f - <<EOF
apiVersion: security.istio.io/v1beta1
kind: PeerAuthentication
metadata:
name: ${NAMESPACE}-no-mtls
spec:
mtls:
mode: PERMISSIVE
EOF
$ kubectl apply -f {{< github_file >}}/samples/bookinfo/networking/destination-rule-all.yaml
{{< /text >}}