-
Notifications
You must be signed in to change notification settings - Fork 79
add EKS troubleshooting steps #622
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
✨ Coder.com for PR #622 deployed! It will be updated on every commit.
|
This pull request has been linked to Shortcut Story #17156: Docs request: EKS troubleshooting: coderd.serviceSpec.externalTrafficPolicy: Cluster is required. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for doing this, Eric!
Another option would be to add a general ## Troubleshooting
section in install.md and then add bullet points such as - Troubleshooting on EKS
which link to a section in the EKS set up guide.
Will defer to @khorne3 on which is better
@khorne3 let me know if my latest commit passes your wordsmith test. thanks! |
setup/installation.md
Outdated
If you're unable to access your Coder deployment via the external IP generated | ||
by EKS, this is likely due to Load Balancer health checks failing. See the | ||
related [GitHub | ||
issue](https://github.com/kubernetes/kubernetes/issues/80897#issuecomment-567911824). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
issue](https://github.com/kubernetes/kubernetes/issues/80897#issuecomment-567911824). | |
issue](https://github.com/kubernetes/kubernetes/issues/80897#issuecomment-567911824) for more information. |
setup/installation.md
Outdated
by EKS, this is likely due to Load Balancer health checks failing. See the | ||
related [GitHub | ||
issue](https://github.com/kubernetes/kubernetes/issues/80897#issuecomment-567911824). | ||
To resolve this issue, set the `externalTrafficPolicy` Helm value to `Cluster` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To resolve this issue, set the `externalTrafficPolicy` Helm value to `Cluster` | |
To resolve this, set the `externalTrafficPolicy` Helm value to `Cluster` |
adding steps to troubleshoot external IP issues with EKS. setting the
externalTrafficPolicy
toCluster
resolves any LB health check failures typically seen with EKS.I wanted to include this step in the EKS setup docs, but since this issue is seen after Coder installation, I figured it'd be best to place this towards the end of the install steps, when users are attempting to access Coder via the external IP.
[ch17156]