Fixed indentation in TLS Ingress example

- Fixed indentation in TLS Ingress example

- Made indentation uniform

Bad indentation resulted in a YAML-to-JSON conversion error when running kubectl
This commit is contained in:
Marco Bellaccini 2020-05-07 18:42:50 +02:00 committed by marcobellaccini
parent 4f7477c844
commit cb734dfdcf
1 changed files with 8 additions and 8 deletions

View File

@ -402,16 +402,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 >}}