Skip to content

Release container toolkit v1.17.8 #190

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

Merged
merged 2 commits into from
Jun 11, 2025
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
21 changes: 18 additions & 3 deletions container-toolkit/install-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,12 @@ Alternatively, you can install the driver by [downloading](https://www.nvidia.co
1. Install the NVIDIA Container Toolkit packages:

```console
$ sudo apt-get install -y nvidia-container-toolkit
$ NVIDIA_CONTAINER_TOOLKIT_VERSION=${version}-1 \
sudo apt-get install -y \
nvidia-container-toolkit=${NVIDIA_CONTAINER_TOOLKIT_VERSION} \
nvidia-container-toolkit-base=${NVIDIA_CONTAINER_TOOLKIT_VERSION} \
libnvidia-container-tools=${NVIDIA_CONTAINER_TOOLKIT_VERSION} \
libnvidia-container1=${NVIDIA_CONTAINER_TOOLKIT_VERSION}
```

(installing-with-yum-or-dnf)=
Expand Down Expand Up @@ -84,7 +89,12 @@ Alternatively, you can install the driver by [downloading](https://www.nvidia.co
1. Install the NVIDIA Container Toolkit packages:

```console
$ sudo dnf install -y nvidia-container-toolkit
$ NVIDIA_CONTAINER_TOOLKIT_VERSION=${version}-1 \
sudo dnf install -y \
nvidia-container-toolkit-${NVIDIA_CONTAINER_TOOLKIT_VERSION} \
nvidia-container-toolkit-base-${NVIDIA_CONTAINER_TOOLKIT_VERSION} \
libnvidia-container-tools-${NVIDIA_CONTAINER_TOOLKIT_VERSION} \
libnvidia-container1-${NVIDIA_CONTAINER_TOOLKIT_VERSION}
```

(installing-with-zypper)=
Expand All @@ -106,7 +116,12 @@ Alternatively, you can install the driver by [downloading](https://www.nvidia.co
1. Install the NVIDIA Container Toolkit packages:

```console
$ sudo zypper --gpg-auto-import-keys install -y nvidia-container-toolkit
$ NVIDIA_CONTAINER_TOOLKIT_VERSION=${version}-1 \
sudo zypper --gpg-auto-import-keys install -y \
nvidia-container-toolkit-${NVIDIA_CONTAINER_TOOLKIT_VERSION} \
nvidia-container-toolkit-base-${NVIDIA_CONTAINER_TOOLKIT_VERSION} \
libnvidia-container-tools-${NVIDIA_CONTAINER_TOOLKIT_VERSION} \
libnvidia-container1-${NVIDIA_CONTAINER_TOOLKIT_VERSION}
```

## Configuration
Expand Down
35 changes: 31 additions & 4 deletions container-toolkit/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,36 @@

# Release Notes

This document describes the new features, improvements, fixed and known issues for the NVIDIA Container Toolkit.
This document describes the new features, improvements, fixes and known issues for the NVIDIA Container Toolkit.

______________________________________________________________________
## NVIDIA Container Toolkit 1.17.8

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

### Fixes and Features

- Updated the ordering of Mounts in CDI to have a deterministic output. This makes testing more consistent.
- Added NVIDIA_CTK_DEBUG environment variable to hooks.

#### Enhancements to libnvidia-container

- Fixed a bug in setting the default for the `--cuda-compat-mode` flag. This caused failures in use cases invoking the `nvidia-container-cli` directly or when an older `nvidia-container-toolkit` version was used with a newer `nvidia-container-cli`.
- Added additional logging to the `nvidia-container-cli`.
- Fixed variable initialisation when updating the ldcache. This caused failures on Arch linux or other platforms where the `nvidia-container-cli` was built from source.

### Included Packages

The following packages are included:

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

The following `container-toolkit` containers are included:

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

## NVIDIA Container Toolkit 1.17.7

Expand Down Expand Up @@ -73,7 +100,7 @@ NVIDIA_CONTAINER_TOOLKIT_VERSION=1.17.6-1 \

**Using `dnf` (RHEL/CentOS, Fedora, Amazon Linux):**

```
```
NVIDIA_CONTAINER_TOOLKIT_VERSION=1.17.6-1 \
dnf install -y \
nvidia-container-toolkit-${NVIDIA_CONTAINER_TOOLKIT_VERSION} \
Expand Down Expand Up @@ -1051,7 +1078,7 @@ The following packages have also been updated to depend on `nvidia-container-too
- Switch to debug logging to reduce log verbosity
- Support logging to logs requested in command line
- Allow low-level runtime path to be set explicitly as `nvidia-container-runtime.runtimes` option
- Fix failure to locate low-level runtime if PATH envvar is unset
- Fix failure to locate low-level runtime if PATH environment variables is unset
- Add `--version` flag to all CLIs

#### specific to libnvidia-container
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.7",
"latest": "1.17.8",
"versions":
[
{
"version": "1.17.8"
},
{
"version": "1.17.7"
},
Expand Down
4 changes: 4 additions & 0 deletions container-toolkit/versions1.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
[
{
"preferred": "true",
"url": "../1.17.8",
"version": "1.17.8"
},
{
"url": "../1.17.7",
"version": "1.17.7"
},
Expand Down
3 changes: 2 additions & 1 deletion repo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,8 @@ project_build_order = [
docs_root = "${root}/container-toolkit"
project = "container-toolkit"
name = "NVIDIA Container Toolkit"
version = "1.17.7"
version = "1.17.8"
source_substitutions = {version = "1.17.8"}
copyright_start = 2020
redirects = [
{ path="concepts.html", target="index.html" },
Expand Down