From c3da8398ab35eca5163d89dd73c546e172abc9be Mon Sep 17 00:00:00 2001 From: Ammar Bandukwala Date: Thu, 28 Sep 2023 15:06:38 -0500 Subject: [PATCH] chore: set sessionAffinity to None in helm chart So that helm works out-of-the-box on AWS. --- helm/coder/values.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helm/coder/values.yaml b/helm/coder/values.yaml index daa900e5805a8..2f064836d5321 100644 --- a/helm/coder/values.yaml +++ b/helm/coder/values.yaml @@ -244,7 +244,7 @@ coder: # AWS ELB does not support session stickiness based on ClientIP, so you must set this to None. # The error message you might see: "Unsupported load balancer affinity: ClientIP" # https://kubernetes.io/docs/reference/networking/virtual-ips/#session-affinity - sessionAffinity: ClientIP + sessionAffinity: None # coder.service.externalTrafficPolicy -- The external traffic policy to use. # You may need to change this to "Local" to preserve the source IP address # in some situations.