Merge pull request #248 from jcmoraisjr/jm-haproxy-docs-fix
Small fixes on HAProxy Ingress docs
This commit is contained in:
commit
0b1fc38128
4 changed files with 7 additions and 7 deletions
|
@ -89,7 +89,7 @@ spec:
|
|||
- path: /
|
||||
backend:
|
||||
serviceName: http-svc
|
||||
servicePort: 80
|
||||
servicePort: 8080
|
||||
EOF
|
||||
```
|
||||
|
||||
|
@ -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
|
||||
```
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -13,4 +13,4 @@ spec:
|
|||
- path: /
|
||||
backend:
|
||||
serviceName: http-svc
|
||||
servicePort: 80
|
||||
servicePort: 8080
|
||||
|
|
|
@ -14,4 +14,4 @@ spec:
|
|||
- path: /
|
||||
backend:
|
||||
serviceName: http-svc
|
||||
servicePort: 80
|
||||
servicePort: 8080
|
||||
|
|
Loading…
Reference in a new issue