-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
feat: Remove elastic_gpu_specifications and elastic_inference_accelerator #3385
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
base: master
Are you sure you want to change the base?
feat: Remove elastic_gpu_specifications and elastic_inference_accelerator #3385
Conversation
These will be handled at the next breaking change |
@Sander0542 @bryantbiggs this seems to be a breaking change for all of our builds where we are using aws provider version >5.97.0. Do we know when this changes are getting merged? |
This fix will still keep support for version 5 of the AWS provider. By removing the two variables it has support for version 5 and version 6 simultaneously. |
@Sander0542 so because we are using version >5.97.0 most of our builds are using version 6.0 and it fails due to above variable which are not supported for v6.0 anymore. Correct me if I am wrong. |
@Sander0542 the errors we are getting is below on aws v6.0
|
@dhavaln-able because of version 6 you are getting these errors. Please have a look at issue #3383. It fixes has a workaround for the error. |
@bryantbiggs Thank you for updating the label and milestone. Does this indicate the next release will be v21.0.0 instead of another minor or patch? I saw the last major release was Feb 2nd of 2024, so my main question is trying to get a more concrete timeline on when to expect this fix to be merged and officially released. Thank you |
Description
With version 6 of the AWS provider it drops support for
elastic_gpu_specifications
andelastic_inference_accelerator
. These blocks are no longer supported by AWS and have reached end of life in January 2024 and April 2024.References
https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_ElasticGpuSpecification.html
https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_ElasticInferenceAccelerator.html
Motivation and Context
Since the blocks have reached end of life there is no reason to keep them in the module. It prevents us from upgrading this module to version 6 of the AWS provider.
After this PR has been merged we can revert #3384 to add support for version 6 of the AWS provider
Related to #3383
Related to #3384
Breaking Changes
There are breaking changes, because two variables are removed in the
eks-managed-node-group
andself-managed-node-group
modules.How Has This Been Tested?
examples/*
to demonstrate and validate my change(s)examples/*
projectspre-commit run -a
on my pull request