Added ingress tls values.yaml example to documentation
In the live documentation (mkdocs) the file is hidden. A link only would still hide the content, so adding the content to the docs itself.
This commit is contained in:
parent
d9f58144eb
commit
64c68b61e9
1 changed files with 25 additions and 0 deletions
|
@ -8,6 +8,31 @@ You need a [TLS cert](../PREREQUISITES.md#tls-certificates) and a [test HTTP ser
|
||||||
|
|
||||||
## Deployment
|
## Deployment
|
||||||
|
|
||||||
|
Create a `values.yaml` file.
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
apiVersion: extensions/v1beta1
|
||||||
|
kind: Ingress
|
||||||
|
metadata:
|
||||||
|
name: nginx-test
|
||||||
|
spec:
|
||||||
|
tls:
|
||||||
|
- hosts:
|
||||||
|
- foo.bar.com
|
||||||
|
# This assumes tls-secret exists and the SSL
|
||||||
|
# certificate contains a CN for foo.bar.com
|
||||||
|
secretName: tls-secret
|
||||||
|
rules:
|
||||||
|
- host: foo.bar.com
|
||||||
|
http:
|
||||||
|
paths:
|
||||||
|
- path: /
|
||||||
|
backend:
|
||||||
|
# This assumes http-svc exists and routes to healthy endpoints
|
||||||
|
serviceName: http-svc
|
||||||
|
servicePort: 80
|
||||||
|
```
|
||||||
|
|
||||||
The following command instructs the controller to terminate traffic using the provided
|
The following command instructs the controller to terminate traffic using the provided
|
||||||
TLS cert, and forward un-encrypted HTTP traffic to the test HTTP service.
|
TLS cert, and forward un-encrypted HTTP traffic to the test HTTP service.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue