Skip to content
Merged
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
34 changes: 34 additions & 0 deletions container-toolkit/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,40 @@ This document describes the new features, improvements, fixed and known issues f

______________________________________________________________________

## NVIDIA Container Toolkit 1.17.4

This release of the NVIDIA Container Toolkit `v1.17.4` is a bugfix release.

The following packages are included:

- `nvidia-container-toolkit 1.17.4`
- `nvidia-container-toolkit-base 1.17.4`
- `libnvidia-container-tools 1.17.4`
- `libnvidia-container1 1.17.4`

The following `container-toolkit` conatiners are included:

- `nvcr.io/nvidia/k8s/container-toolkit:v1.17.4-ubi8`
- `nvcr.io/nvidia/k8s/container-toolkit:v1.17.4-ubuntu20.04` (also as `nvcr.io/nvidia/k8s/container-toolkit:v1.17.4`)

### Fixes and Features

- Disable the mounting of CUDA compat libraries from the container by default. The libraries are still available in their
orignal location. If the previous behaviour is required, the `allow-cuda-compat-libs-from-container` feature flag can be enabled.
- Skip the detection and injection of graphics libraries when `NVIDIA_DRIVER_CAPABILITIES` includes `graphics` on iGPU-based systems.
This prevents conflicting ICD files causing errors when starting a container.
- Fix a bug where `--config-search-path` arguments are ignored when running `nvidia-ctk generate`. This fix allows driver
to be located even if they are in non-standard locations.
- Add support for Containerd version 3 config files.
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
- Add support for Containerd version 3 config files.
- Add support for containerd version 3 config files.

small nit


#### Enhancements to libnvidia-container

- Add a `--no-cntlibs` CLI option to `nvidia-container-cli`.

### Enhancements to container-toolkit Container Images

- Updated the CUDA base image version to 12.6.3.

## NVIDIA Container Toolkit 1.17.3

This release of the NVIDIA Container Toolkit `v1.17.3` is a bugfix release.
Expand Down
5 changes: 4 additions & 1 deletion container-toolkit/versions.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
{
"latest": "1.17.3",
"latest": "1.17.4",
"versions":
[
{
"version": "1.17.4"
},
{
"version": "1.17.3"
},
Expand Down
2 changes: 1 addition & 1 deletion repo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ project_build_order = [
docs_root = "${root}/container-toolkit"
project = "container-toolkit"
name = "NVIDIA Container Toolkit"
version = "1.17.3"
version = "1.17.4"
copyright_start = 2020
redirects = [
{ path="concepts.html", target="index.html" },
Expand Down
Loading