From 54ac73a200a59aa560c73d28cef782fa5f09e3ba Mon Sep 17 00:00:00 2001 From: luohua13 Date: Wed, 21 Jan 2026 20:50:56 +0800 Subject: [PATCH 1/2] fix: dra config --- ...e_Alauda_Build_of_NVIDIA_DRA_Driver_for_GPUs.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/docs/en/solutions/How_to_Use_Alauda_Build_of_NVIDIA_DRA_Driver_for_GPUs.md b/docs/en/solutions/How_to_Use_Alauda_Build_of_NVIDIA_DRA_Driver_for_GPUs.md index 6dcad05..5b4ca8f 100644 --- a/docs/en/solutions/How_to_Use_Alauda_Build_of_NVIDIA_DRA_Driver_for_GPUs.md +++ b/docs/en/solutions/How_to_Use_Alauda_Build_of_NVIDIA_DRA_Driver_for_GPUs.md @@ -38,7 +38,7 @@ CDI (Container Device Interface) provides a standard mechanism for device vendor CDI support is enabled by default in containerd version 2.0 and later. Earlier versions, starting from 1.7.0, support for this feature requires manual activation. -#### Steps to Enable CDI in containerd v1.7.x +#### Steps to Enable CDI in containerd v1.7.x(Only need to be executed on the GPU node.) 1. Update containerd configuration. @@ -82,6 +82,18 @@ On the all master nodes: 1. Edit `kube-apiserver` component manifests in `/etc/kubernetes/manifests/kube-apiserver.yaml`: + For Kubernetes 1.32: + ```yaml + spec: + containers: + - command: + - kube-apiserver + - --feature-gates=DynamicResourceAllocation=true # required + - --runtime-config=resource.k8s.io/v1beta1=true # required + # ... other flags + ``` + + For Kubernetes 1.33: ```yaml spec: containers: From 7697190757fb27f08bd3e2d00a382fdee9cb8b00 Mon Sep 17 00:00:00 2001 From: luohua13 Date: Thu, 22 Jan 2026 10:54:25 +0800 Subject: [PATCH 2/2] fix comment --- .../How_to_Use_Alauda_Build_of_NVIDIA_DRA_Driver_for_GPUs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/solutions/How_to_Use_Alauda_Build_of_NVIDIA_DRA_Driver_for_GPUs.md b/docs/en/solutions/How_to_Use_Alauda_Build_of_NVIDIA_DRA_Driver_for_GPUs.md index 5b4ca8f..21a6ae1 100644 --- a/docs/en/solutions/How_to_Use_Alauda_Build_of_NVIDIA_DRA_Driver_for_GPUs.md +++ b/docs/en/solutions/How_to_Use_Alauda_Build_of_NVIDIA_DRA_Driver_for_GPUs.md @@ -38,7 +38,7 @@ CDI (Container Device Interface) provides a standard mechanism for device vendor CDI support is enabled by default in containerd version 2.0 and later. Earlier versions, starting from 1.7.0, support for this feature requires manual activation. -#### Steps to Enable CDI in containerd v1.7.x(Only need to be executed on the GPU node.) +#### Steps to Enable CDI in containerd v1.7.x (Only required on GPU nodes) 1. Update containerd configuration.