mirror of
https://github.com/siderolabs/talos.git
synced 2025-08-08 07:37:06 +02:00
Add more NVIDIA tests covering all supported OSS and Proprietary LTS and Production driver versions. Fixes: #11398 Signed-off-by: Noel Georgi <git@frezbo.dev>
17 lines
725 B
Go
17 lines
725 B
Go
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
//go:build integration_api
|
|
|
|
package api
|
|
|
|
const (
|
|
// NvidiaDevicePluginChartVersion is the version of the NVIDA device plugin chart to use
|
|
// renovate: datasource=helm versioning=helm depName=nvidia-device-plugin registryUrl=https://nvidia.github.io/k8s-device-plugin
|
|
NvidiaDevicePluginChartVersion = "v0.17.2"
|
|
// NvidiaCUDATestImageVersion is the version of the NVIDIA CUDA test image to use
|
|
// renovate: datasource=docker depName=nvcr.io/nvidia/k8s/cuda-sample
|
|
NvidiaCUDATestImageVersion = "vectoradd-cuda12.5.0"
|
|
)
|