From ba62bd031b96b95311304d60a04591fbce8b0c00 Mon Sep 17 00:00:00 2001 From: k8s-infra-cherrypick-robot <90416843+k8s-infra-cherrypick-robot@users.noreply.github.com> Date: Wed, 21 May 2025 02:40:35 -0700 Subject: [PATCH] =?UTF-8?q?Fix=20=F0=9F=90=9B:=20Markdown=20requires=20nes?= =?UTF-8?q?ted=20content=20inside=20a=20list=20item=20to=20be=20indented?= =?UTF-8?q?=20(#13390)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Alberto Llamas --- docs/deploy/index.md | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/docs/deploy/index.md b/docs/deploy/index.md index e0096f90a..051c7f283 100644 --- a/docs/deploy/index.md +++ b/docs/deploy/index.md @@ -284,27 +284,29 @@ This section explains how to do that on AWS using an NLB. 1. Download the [deploy.yaml](https://raw.githubusercontent.com/kubernetes/ingress-nginx/controller-v1.12.2/deploy/static/provider/aws/nlb-with-tls-termination/deploy.yaml) template - ```console - wget https://raw.githubusercontent.com/kubernetes/ingress-nginx/controller-v1.12.2/deploy/static/provider/aws/nlb-with-tls-termination/deploy.yaml - ``` + ```console + wget https://raw.githubusercontent.com/kubernetes/ingress-nginx/controller-v1.12.2/deploy/static/provider/aws/nlb-with-tls-termination/deploy.yaml + ``` 2. Edit the file and change the VPC CIDR in use for the Kubernetes cluster: - ``` - proxy-real-ip-cidr: XXX.XXX.XXX/XX - ``` + ``` + proxy-real-ip-cidr: XXX.XXX.XXX/XX + ``` 3. Change the AWS Certificate Manager (ACM) ID as well: - ``` - arn:aws:acm:us-west-2:XXXXXXXX:certificate/XXXXXX-XXXXXXX-XXXXXXX-XXXXXXXX - ``` + ``` + arn:aws:acm:us-west-2:XXXXXXXX:certificate/XXXXXX-XXXXXXX-XXXXXXX-XXXXXXXX + ``` 4. Deploy the manifest: - ```console - kubectl apply -f deploy.yaml - ``` + ```console + kubectl apply -f deploy.yaml + ``` + + ##### NLB Idle Timeouts