From 672e725c57febe0796cc4caf5382e4bb25243f33 Mon Sep 17 00:00:00 2001 From: Hyeonki Hong Date: Tue, 12 May 2026 20:02:39 +0900 Subject: [PATCH 1/3] NO-ISSUE: docs(website): add GPU driver notes to prerequisites Add a warning to skip driver installation when the AMD GPU driver is already installed on the host OS, and an info note linking to the AMD user-space/kernel-space compatibility matrix when selecting `driver.version` for the GPU Operator. Co-Authored-By: Claude Opus 4.7 (1M context) --- website/docs/getting-started/prerequisites.mdx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/website/docs/getting-started/prerequisites.mdx b/website/docs/getting-started/prerequisites.mdx index e364b33..c952162 100644 --- a/website/docs/getting-started/prerequisites.mdx +++ b/website/docs/getting-started/prerequisites.mdx @@ -137,6 +137,14 @@ kubectl create secret -n amd-gpu \ Then, create a `gpu-operator-values.yaml` file with the following content. **Please replace `` with the URL of your private registry**. You may also change the image name `amdgpu-driver`, if necessary, according to your private registry's policies. +:::warning +If the AMD GPU driver is already installed on the host OS, set `driver.enable` to `false` to skip driver installation by the GPU Operator. +::: + +:::info +When installing the GPU driver via the GPU Operator, refer to the [User-space and kernel-space compatibility matrix](https://rocm.docs.amd.com/projects/install-on-linux/en/latest/reference/user-kernel-space-compat-matrix.html) to select a `driver.version` that is compatible with the host OS kernel. +::: + ```yaml title="gpu-operator-values.yaml" {7} deviceConfig: spec: From 8f69da249b7209490f7d749836de8d5df72b28ca Mon Sep 17 00:00:00 2001 From: Hyeonki Hong Date: Tue, 12 May 2026 20:06:27 +0900 Subject: [PATCH 2/3] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- website/docs/getting-started/prerequisites.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/getting-started/prerequisites.mdx b/website/docs/getting-started/prerequisites.mdx index c952162..7a3084c 100644 --- a/website/docs/getting-started/prerequisites.mdx +++ b/website/docs/getting-started/prerequisites.mdx @@ -138,7 +138,7 @@ kubectl create secret -n amd-gpu \ Then, create a `gpu-operator-values.yaml` file with the following content. **Please replace `` with the URL of your private registry**. You may also change the image name `amdgpu-driver`, if necessary, according to your private registry's policies. :::warning -If the AMD GPU driver is already installed on the host OS, set `driver.enable` to `false` to skip driver installation by the GPU Operator. +If the AMD GPU driver is already installed on the host OS, set `deviceConfig.spec.driver.enable: false` to skip driver installation by the GPU Operator. ::: :::info From a6bb4f3002e5537b841d5776d62233b17573ef63 Mon Sep 17 00:00:00 2001 From: Hyeonki Hong Date: Tue, 12 May 2026 20:10:49 +0900 Subject: [PATCH 3/3] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- website/docs/getting-started/prerequisites.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/getting-started/prerequisites.mdx b/website/docs/getting-started/prerequisites.mdx index 7a3084c..3221340 100644 --- a/website/docs/getting-started/prerequisites.mdx +++ b/website/docs/getting-started/prerequisites.mdx @@ -142,7 +142,7 @@ If the AMD GPU driver is already installed on the host OS, set `deviceConfig.spe ::: :::info -When installing the GPU driver via the GPU Operator, refer to the [User-space and kernel-space compatibility matrix](https://rocm.docs.amd.com/projects/install-on-linux/en/latest/reference/user-kernel-space-compat-matrix.html) to select a `driver.version` that is compatible with the host OS kernel. +When installing the GPU driver via the GPU Operator, refer to the [User-space and kernel-space compatibility matrix](https://rocm.docs.amd.com/projects/install-on-linux/en/latest/reference/user-kernel-space-compat-matrix.html) to select a `deviceConfig.spec.driver.version` that is compatible with the host OS kernel. ::: ```yaml title="gpu-operator-values.yaml" {7}