From 585d1f0ce9451679ae86e353071cc0b6e4073bc1 Mon Sep 17 00:00:00 2001 From: Mark Milligan Date: Thu, 2 Mar 2023 20:10:02 +0000 Subject: [PATCH] docs: AWS EKS sessionAffinity for LB external IP to be issued --- docs/install/kubernetes.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/install/kubernetes.md b/docs/install/kubernetes.md index 85e3ddeafa603..c3f33f5af49d1 100644 --- a/docs/install/kubernetes.md +++ b/docs/install/kubernetes.md @@ -112,6 +112,15 @@ to log in and manage templates. > [values.yaml](https://github.com/coder/coder/blob/main/helm/values.yaml) > file directly. + If you are deploying Coder on AWS EKS and service is set to LoadBalancer, the load balancer external IP will be stuck in a pending status unless sessionAffinity is set to None. + + ```yaml + coder: + service: + type: LoadBalancer + sessionAffinity: None + ``` + 1. Run the following command to install the chart in your cluster. ```console