docs: AWS EKS sessionAffinity for LB external IP to be issued (#6425)

This commit is contained in:
sharkymark 2023-03-06 17:40:05 -06:00 committed by GitHub
parent 8a6635bf5f
commit d8abe37cd7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 0 deletions

View File

@ -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