From cb734dfdcf75df0c9312626955989c6dabf21f74 Mon Sep 17 00:00:00 2001 From: Marco Bellaccini <24960638+marcobellaccini@users.noreply.github.com> Date: Thu, 7 May 2020 18:42:50 +0200 Subject: [PATCH] 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 --- .../docs/concepts/services-networking/ingress.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/content/en/docs/concepts/services-networking/ingress.md b/content/en/docs/concepts/services-networking/ingress.md index 39e57ffdb0..8daefc5688 100644 --- a/content/en/docs/concepts/services-networking/ingress.md +++ b/content/en/docs/concepts/services-networking/ingress.md @@ -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 >}}