Kyle Tarplee
Kyle Tarplee
Why would these not be considered valid urls in the servers block: ```yaml - . - ../ - ../api ``` See my comment [here](https://github.com/zalando/connexion/issues/1174#issuecomment-607268462). The OpenAPI spec allows relative paths....
I think having the map of image overrides in the tektonconfig is the way to go. It allows for air-gapped environments where the syncing process might not preserve manifest IDs...
Since blake3 supports multiple digests sizes it seems to me that "blake3" without the digest size (e.g., "blake3-256") is a bad choice for a name. Furthermore, it makes sense to...
I wrote a Kubernetes Mutating Admission Webhook called [gpu-admission-webhook](https://gitlab.com/ktarplee/gpu-admission-webhook) to handle this case. It sets NVIDIA_VISIBLE_DEVICES to "none" if you do not request a GPU. It also deletes environment variables...
This is no longer an issue if you have the following lines in your `/etc/nvidia-container-runtime/config.toml` ```toml accept-nvidia-visible-devices-envvar-when-unprivileged = false accept-nvidia-visible-devices-as-volume-mounts = true ``` And you deploy the nvidia-device-plugin with the...
It does not implement QoS or memory pools. It is more akin to how users use a shared server with GPUs but it does limit the oversubscription. So there is...
I finally got some time to finish reading @klueska plan in the links above. The plan is to only support A100 GPUs with CUDA 11 by supporting pre-determined fixed slices...
@klueska The patch was approved for public release by the U.S. Air Force so we should be able to release it soon (attach it to this issue). Would you prefer...
Attached is the patch (to be applied to master) that was approved for public release. It was developed by [ACT3](https://www.act3-ace.com). [nvidia.diff](https://github.com/NVIDIA/k8s-device-plugin/files/4959771/nvidia.txt)
@zvonkok Thanks for sharing the Alibaba approach. After reading the docs it seems your approach requires extending the scheduler and a custom device plugin. Comparing your approach to MIG approach...