Merge pull request #20828 from marcobellaccini/patch-1

Fixed indentation in TLS Ingress example
This commit is contained in:
Kubernetes Prow Robot
2020-05-13 09:00:27 -07:00
committed by GitHub
@@ -401,16 +401,16 @@ metadata:
spec:
tls:
- hosts:
- sslexample.foo.com
- sslexample.foo.com
secretName: testsecret-tls
rules:
- host: sslexample.foo.com
http:
paths:
- path: /
backend:
serviceName: service1
servicePort: 80
- host: sslexample.foo.com
http:
paths:
- path: /
backend:
serviceName: service1
servicePort: 80
```
{{< note >}}