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:
Martin F 2018-10-02 08:22:12 +02:00 committed by GitHub
parent d9f58144eb
commit 64c68b61e9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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.