Add eksctl proxy command#401
Open
gtsiolis wants to merge 4 commits into
Open
Conversation
gtsiolis
force-pushed
the
pro-367-add-eksctl-proxy-commands-for-localstack-1150
branch
from
July 22, 2026 09:36
3953561 to
21797ad
Compare
gtsiolis
marked this pull request as ready for review
July 22, 2026 10:11
gtsiolis
force-pushed
the
pro-367-add-eksctl-proxy-commands-for-localstack-1150
branch
from
July 22, 2026 14:21
0939c3e to
fe78b58
Compare
Co-authored-by: linear-code[bot] <222613912+linear-code[bot]@users.noreply.github.com>
…rage Co-Authored-By: Claude <noreply@anthropic.com>
Co-Authored-By: Claude <noreply@anthropic.com>
gtsiolis
force-pushed
the
pro-367-add-eksctl-proxy-commands-for-localstack-1150
branch
from
July 22, 2026 14:22
fe78b58 to
0ef9ce7
Compare
peter-smith-phd
requested changes
Jul 22, 2026
peter-smith-phd
left a comment
Contributor
There was a problem hiding this comment.
I'm happy with the general idea of adding eksctl, although I do want to see a strategy on how to handle service-specific tools like this. EKS is just one of 100+ services we support, so I don't feel it deserves a top-level command in lstk.
Before I'd be comfortable with this, I'd like to see our lstk design approach for handling service-specific tooling.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds
lstk eksctl, a proxy that runs the installed eksctl binary against the running LocalStack AWS emulator. It replaces the manual endpoint exports from LocalStack's eksctl integration guide with:The proxy:
AWS_ENDPOINT_URLAWS_ENDPOINT_URL, while removing inherited service-specific endpoint overrides and forcing configured endpoints to remain enabled so requests cannot fall through to real AWSAWS_REGION/AWS_DEFAULT_REGIONpair from either user-provided regionversion,info,completion, and genuine help requests run without Docker, a running emulator, or the version gateLSTK_EKSCTL_CMDfor selecting a different eksctl binaryThe command is registered in the Tools group and documented in the README. Unit and integration coverage exercises version gating, help/offline classification, environment isolation, endpoint and region precedence, emulator/runtime gates, argument and JSON flag forwarding, exit codes, and the Docker-backed command path.
eksctl support in LocalStack is experimental, and EKS requires the Ultimate plan.
Closes PRO-367