From e920389503a9967061ff4b7b00748dbf8bf7a203 Mon Sep 17 00:00:00 2001 From: Akshay Dongaonkar Date: Thu, 14 Mar 2024 14:17:26 -0700 Subject: [PATCH] Add default values to `proxy-*-connect-timeout` annotations docs (#12155) * Add default values to proxy connect description Finding these values in the docs site is pretty painful Update the documentation to follow other proxy fields in providing a default value at the end of the description for the field Fixes #12154 --------- Signed-off-by: Akshay Dongaonkar Co-authored-by: Alejandro Pedraza --- cli/cmd/doc.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/cmd/doc.go b/cli/cmd/doc.go index f60ab2490..5c79f69ab 100644 --- a/cli/cmd/doc.go +++ b/cli/cmd/doc.go @@ -238,11 +238,11 @@ func generateAnnotationsDocs() []annotationDoc { }, { Name: k8s.ProxyOutboundConnectTimeout, - Description: "Used to configure the outbound TCP connection timeout in the proxy", + Description: "Used to configure the outbound TCP connection timeout in the proxy. Defaults to `1000ms`", }, { Name: k8s.ProxyInboundConnectTimeout, - Description: "Inbound TCP connection timeout in the proxy", + Description: "Inbound TCP connection timeout in the proxy. Defaults to `100ms`", }, { Name: k8s.ProxyOutboundDiscoveryCacheUnusedTimeout,