Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Gl sync #12

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .common-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ default:
command: ["--experimental"]

variables:
DRIVER_VERSIONS: 470.239.06 535.161.07 550.54.14
DRIVER_VERSIONS: 470.239.06 535.161.08 550.54.15
BUILD_MULTI_ARCH_IMAGES: "true"

stages:
Expand Down Expand Up @@ -72,13 +72,13 @@ trigger-pipeline:
.driver-versions:
parallel:
matrix:
- DRIVER_VERSION: [470.239.06, 535.161.07, 550.54.14]
- DRIVER_VERSION: [470.239.06, 535.161.08, 550.54.15]

# Define the driver versions for jobs that can be run in parallel for ubuntu22.04
.driver-versions-ubuntu22.04:
parallel:
matrix:
- DRIVER_VERSION: [535.161.07, 550.54.14]
- DRIVER_VERSION: [535.161.08, 550.54.15]

# Define the matrix of precompiled jobs that can be run in parallel for ubuntu22.04
.driver-versions-precompiled-ubuntu22.04:
Expand All @@ -91,7 +91,7 @@ trigger-pipeline:
.driver-versions-rhel9:
parallel:
matrix:
- DRIVER_VERSION: [535.161.07, 550.54.14]
- DRIVER_VERSION: [535.161.08, 550.54.15]

# Define the distribution targets
.dist-ubuntu20.04:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ jobs:
matrix:
driver:
- 470.223.02
- 535.161.07
- 550.54.14
- 535.161.08
- 550.54.15
dist:
- ubuntu20.04
- ubuntu22.04
Expand Down
2 changes: 1 addition & 1 deletion rhel8/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ SHELL ["/bin/bash", "-c"]

RUN dnf install -y git wget

ENV GOLANG_VERSION=1.20
ENV GOLANG_VERSION=1.22.1

# download appropriate binary based on the target architecture for multi-arch builds
RUN OS_ARCH=${TARGETARCH/x86_64/amd64} && OS_ARCH=${OS_ARCH/aarch64/arm64} && \
Expand Down
6 changes: 3 additions & 3 deletions rhel9/precompiled/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,9 +103,9 @@ The procedure is based on [building custom kmod packages](https://github.com/NVI
5. Set NVIDIA environment variables.

```
export CUDA_VERSION=12.3.1
export CUDA_VERSION=12.3.2
export DRIVER_EPOCH=1
export DRIVER_VERSION=550.54.14
export DRIVER_VERSION=550.54.15
```

6. [Optional] Build the vGPU guest driver
Expand Down Expand Up @@ -153,7 +153,7 @@ Define the `NVIDIADDriver` custom resource to make use of the pre-compiled drive
usePrecompiled: true
repository: quay.io/acme
image: nvidia-gpu-driver
version: 550.54.14
version: 550.54.15
```

Define the `ClusterPolicy` resource to make use of the NVIDIADriver custom resource, e.g.:
Expand Down
2 changes: 1 addition & 1 deletion rhel9/precompiled/nvidiadriver.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"usePrecompiled": true,
"repository": "quay.io/fabiendupont",
"image": "nvidia-gpu-driver",
"version": "550.54.14",
"version": "550.54.15",
"imagePullPolicy": "Always",
"nodeSelector": {},
"manager": {},
Expand Down
2 changes: 1 addition & 1 deletion ubuntu20.04/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
git && \
rm -rf /var/lib/apt/lists/*

ENV GOLANG_VERSION=1.20
ENV GOLANG_VERSION=1.22.1

# download appropriate binary based on the target architecture for multi-arch builds
RUN OS_ARCH=${TARGETARCH/x86_64/amd64} && OS_ARCH=${OS_ARCH/aarch64/arm64} && \
Expand Down
2 changes: 1 addition & 1 deletion ubuntu22.04/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
git && \
rm -rf /var/lib/apt/lists/*

ENV GOLANG_VERSION=1.20
ENV GOLANG_VERSION=1.22.1

# download appropriate binary based on the target architecture for multi-arch builds
RUN OS_ARCH=${TARGETARCH/x86_64/amd64} && OS_ARCH=${OS_ARCH/aarch64/arm64} && \
Expand Down
2 changes: 1 addition & 1 deletion versions.mk
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
# limitations under the License.

# DRIVER_VERSIONS contains latest version in all active datacenter branches
DRIVER_VERSIONS ?= 470.239.06 535.161.07 550.54.14
DRIVER_VERSIONS ?= 470.239.06 535.161.08 550.54.15

CUDA_VERSION := 12.3.2