Skip to content
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

Migrate to use aws-sdk for eks cluster creation and destruction #955

Open
gthao313 opened this issue Dec 5, 2024 · 0 comments
Open

Migrate to use aws-sdk for eks cluster creation and destruction #955

gthao313 opened this issue Dec 5, 2024 · 0 comments
Labels
enhancement New feature or request priority/mid rust Pull requests that update Rust code

Comments

@gthao313
Copy link
Member

gthao313 commented Dec 5, 2024

Currently, we're using eksctl command to create clusters, and this method would bring limitations like less programmatic control. We should migrate testsys to use aws-sdk.

let status = Command::new("eksctl")
.args([
"create",
"cluster",
"-r",
region,
"--zones",
&zones.clone().unwrap_or_default().join(","),
"--version",
&version_arg,
"-n",
cluster_name,
"--nodes",
"0",
"--managed=false",
])

@gthao313 gthao313 added enhancement New feature or request priority/mid rust Pull requests that update Rust code labels Dec 5, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request priority/mid rust Pull requests that update Rust code
Projects
None yet
Development

No branches or pull requests

1 participant