From 67f1e77b085b41f21b0eda5e78701cbb71b0ae56 Mon Sep 17 00:00:00 2001 From: Joao Morais Date: Wed, 8 Feb 2017 07:26:31 -0200 Subject: [PATCH] Minor fix on console cmd of HAProxy docs --- examples/deployment/haproxy/README.md | 2 +- examples/tls-termination/haproxy/README.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/deployment/haproxy/README.md b/examples/deployment/haproxy/README.md index ca408b539..b03541e66 100644 --- a/examples/deployment/haproxy/README.md +++ b/examples/deployment/haproxy/README.md @@ -147,5 +147,5 @@ haproxy-ingress-2556761959-tv20k 1/1 Running 0 9m ... $ kubectl logs haproxy-ingress-2556761959-tv20k -$ kubectl describe haproxy-ingress-2556761959-tv20k +$ kubectl describe pod/haproxy-ingress-2556761959-tv20k ``` diff --git a/examples/tls-termination/haproxy/README.md b/examples/tls-termination/haproxy/README.md index 2393ef2c2..e019a00ee 100644 --- a/examples/tls-termination/haproxy/README.md +++ b/examples/tls-termination/haproxy/README.md @@ -1,4 +1,4 @@ -# TLS termination +# HAProxy Ingress TLS termination ## Prerequisites @@ -102,13 +102,13 @@ Here is the difference: Now `foo.bar` certificate should be used to terminate TLS: ```console -openssl s_client -connect 172.17.4.99:31692 +$ openssl s_client -connect 172.17.4.99:31692 ... subject=/CN=localhost issuer=/CN=localhost --- -openssl s_client -connect 172.17.4.99:31692 -servername foo.bar +$ openssl s_client -connect 172.17.4.99:31692 -servername foo.bar ... subject=/CN=foo.bar issuer=/CN=foo.bar