Open Issues Need Help
View All on GitHubAI Summary: Modify the Kubernetes Dynamic Resource Allocation (DRA) example driver's Helm chart to make the number of GPU devices per node configurable via a value in `values.yaml`. This involves changing the hardcoded number of devices in the `kubeletplugin.yaml` template to reference a variable from `values.yaml`, allowing users to specify the desired number of devices. The default should be reverted to 8, and a higher value (9) should be set for e2e tests.
Example DRA driver that developers can fork and modify to get them started writing their own.
AI Summary: The issue is a build error encountered while building a Kubernetes DRA (Dynamic Resource Allocation) driver on Ubuntu 24.04 using Docker. The error message indicates that the `--progress` flag used in the `docker build` command is deprecated and unknown. The task requires investigating the deprecated `--progress` flag, updating the `docker build` command to use the recommended BuildKit approach, and potentially adjusting the Makefile to reflect the changes. This will involve understanding the Docker build process and the Makefile's structure.
Example DRA driver that developers can fork and modify to get them started writing their own.