Minor fix on console cmd of HAProxy docs
This commit is contained in:
parent
8cb6a6693e
commit
67f1e77b08
2 changed files with 4 additions and 4 deletions
|
@ -147,5 +147,5 @@ haproxy-ingress-2556761959-tv20k 1/1 Running 0 9m
|
||||||
...
|
...
|
||||||
|
|
||||||
$ kubectl logs haproxy-ingress-2556761959-tv20k
|
$ kubectl logs haproxy-ingress-2556761959-tv20k
|
||||||
$ kubectl describe haproxy-ingress-2556761959-tv20k
|
$ kubectl describe pod/haproxy-ingress-2556761959-tv20k
|
||||||
```
|
```
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# TLS termination
|
# HAProxy Ingress TLS termination
|
||||||
|
|
||||||
## Prerequisites
|
## Prerequisites
|
||||||
|
|
||||||
|
@ -102,13 +102,13 @@ Here is the difference:
|
||||||
Now `foo.bar` certificate should be used to terminate TLS:
|
Now `foo.bar` certificate should be used to terminate TLS:
|
||||||
|
|
||||||
```console
|
```console
|
||||||
openssl s_client -connect 172.17.4.99:31692
|
$ openssl s_client -connect 172.17.4.99:31692
|
||||||
...
|
...
|
||||||
subject=/CN=localhost
|
subject=/CN=localhost
|
||||||
issuer=/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
|
subject=/CN=foo.bar
|
||||||
issuer=/CN=foo.bar
|
issuer=/CN=foo.bar
|
||||||
|
|
Loading…
Reference in a new issue