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

Fix nodegroup test failure #897

Merged
merged 1 commit into from
Jul 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion examples/nodegroup/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ const spot = new eks.NodeGroup("example-ng-simple-spot", {
effect: "NoSchedule",
},
},
kubeletExtraArgs: "--alsologtostderr",
bootstrapExtraArgs: "--aws-api-retry-attempts 10",
instanceProfile: instanceProfile0,
}, {
Expand Down
4 changes: 2 additions & 2 deletions examples/utils/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ import (
)

// Each resource request will be fetched from the Kubernetes API Server at a
// max of 20 retries, with 15 seconds in between each attempt.
// This creates a max wait time of up to 5 minutes that a resource request
// max of 40 retries, with 15 seconds in between each attempt.
// This creates a max wait time of up to 10 minutes that a resource request
// must successfully return within, before moving on.

// MaxRetries is the maximum number of retries that a resource will be
Expand Down
Loading