talos/internal/integration/api/constants.go
Noel Georgi 38e176e594
chore(ci): fix datasource versioning
Fix datasource versioning for container images.

Signed-off-by: Noel Georgi <git@frezbo.dev>
2025-07-24 15:23:06 +05:30

17 lines
743 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 versioning=docker depName=nvcr.io/nvidia/k8s/cuda-sample
NvidiaCUDATestImageVersion = "vectoradd-cuda12.5.0"
)