From 0e7e96224732914b49c3c0c4ec1f228bb98fdb28 Mon Sep 17 00:00:00 2001 From: James Peach Date: Wed, 1 Sep 2021 10:46:10 +1000 Subject: [PATCH] Fix markdown list formatting. There needs to be a newline separating paragraphs from lists to make the markdown processor format the list as a list. Signed-off-by: James Peach --- apis/v1alpha2/gateway_types.go | 1 + config/crd/v1alpha2/gateway.networking.k8s.io_gateways.yaml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/apis/v1alpha2/gateway_types.go b/apis/v1alpha2/gateway_types.go index 11cf42387d..9c424d2c03 100644 --- a/apis/v1alpha2/gateway_types.go +++ b/apis/v1alpha2/gateway_types.go @@ -271,6 +271,7 @@ const ( type GatewayTLSConfig struct { // Mode defines the TLS behavior for the TLS session initiated by the client. // There are two possible modes: + // // - Terminate: The TLS session between the downstream client // and the Gateway is terminated at the Gateway. This mode requires // certificateRef to be set. diff --git a/config/crd/v1alpha2/gateway.networking.k8s.io_gateways.yaml b/config/crd/v1alpha2/gateway.networking.k8s.io_gateways.yaml index f8c4b194ce..9197011bc1 100644 --- a/config/crd/v1alpha2/gateway.networking.k8s.io_gateways.yaml +++ b/config/crd/v1alpha2/gateway.networking.k8s.io_gateways.yaml @@ -373,7 +373,7 @@ spec: default: Terminate description: "Mode defines the TLS behavior for the TLS session initiated by the client. There are two possible - modes: - Terminate: The TLS session between the downstream + modes: \n - Terminate: The TLS session between the downstream client and the Gateway is terminated at the Gateway. This mode requires certificateRef to be set. - Passthrough: The TLS session is NOT terminated by the Gateway. This