You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
eksctl would try to install the EFA device plugin if efaEnabled is set to true. The pkg/addons/assets/efa-device-plugin.yaml maintained in this repo is what eksctl used to deploy the EFA device plugin DaemonSet. However, it is pretty outdated:
It lacks of the newly supported instance type like p5 instances.
It is still pointing to a fairly old image tag /eks/aws-efa-k8s-device-plugin:v0.3.3. The official EFA Device plugin vended by eks-charts is pointing to image tag v0.5.4 already.
Instead of maintain the yaml file, can we just generate it from the latest eks-chart? One can do this
git clone https://github.com/aws/eks-charts.git
cd eks-charts/stable/aws-efa-k8s-device-plugin/
helm template . > efa-device-plugin.yaml
The generated efa-device-plugin.yaml would be like below
The eksctl installed device plugin is outdated and cannot be deployed to a certain instance type that already supports EFA (e.g. p5.48xlarge, trn2.48xlarge).
There has been past PRs/issues asking to update the yaml with more supported instances:
Hello ytsssun 👋 Thank you for opening an issue in eksctl project. The team will review the issue and aim to respond within 1-5 business days. Meanwhile, please read about the Contribution and Code of Conduct guidelines here. You can find out more information about eksctl on our website
ytsssun
changed the title
[Feature] Add more supported instances to EFA Device Plugin DaemonSet - refer to eks-charts
[Feature] Add more supported instances (P5) to EFA Device Plugin DaemonSet - refer to eks-charts
Dec 13, 2024
What feature/behavior/change do you want?
eksctl
would try to install the EFA device plugin ifefaEnabled
is set to true. The pkg/addons/assets/efa-device-plugin.yaml maintained in this repo is whateksctl
used to deploy the EFA device plugin DaemonSet. However, it is pretty outdated:/eks/aws-efa-k8s-device-plugin:v0.3.3
. The official EFA Device plugin vended by eks-charts is pointing to image tag v0.5.4 already.Instead of maintain the yaml file, can we just generate it from the latest eks-chart? One can do this
The generated
efa-device-plugin.yaml
would be like belowWhy do you want this feature?
The
eksctl
installed device plugin is outdated and cannot be deployed to a certain instance type that already supports EFA (e.g.p5.48xlarge
,trn2.48xlarge
).There has been past PRs/issues asking to update the yaml with more supported instances:
I do see that there were past changes that got reverted - 2f12605. I am fine with just updating the
p5
series instances to begin with.The text was updated successfully, but these errors were encountered: