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
74 changes: 73 additions & 1 deletion container-toolkit/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,77 @@ This document describes the new features, improvements, fixed and known issues f

______________________________________________________________________

## NVIDIA Container Toolkit 1.17.3

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

The following packages are included:

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

The following `container-toolkit` conatiners are included:

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

### Fixes and Features

- Only allow host-relative LDConfig paths by default. The previous behaviour of allowing container-relative LDConfig paths can explicitly enable.

#### Enhancements to libnvidia-container

- Create virtual copy of host ldconfig binary before calling fexecve() to update the container's ldcache.

## NVIDIA Container Toolkit 1.17.2

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

The following packages are included:

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

The following `container-toolkit` conatiners are included:

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

### Fixes and Features

- Fixed a bug where legacy images would set imex channels as `all`.container to fail to start.

## NVIDIA Container Toolkit 1.17.1

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

The following packages are included:

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

The following `container-toolkit` conatiners are included:

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

### Fixes and Features

- Fixed a bug where specific symlinks existing in a container image could cause a container to fail to start.
- Fixed a bug on Tegra-based systems where a container would fail to start.
- Fixed a bug where the default container runtime config path was not properly set.

### Enhancements to container-toolkit Container Images

- Added a fallback to using a config file if the current runtime config can not be determined from the command line. This fixes deployments on environments such as microk8s.


## NVIDIA Container Toolkit 1.17.0

This version includes updates for:
Expand All @@ -27,13 +98,14 @@ This release of the NVIDIA Container Toolkit `v1.17.0` is a feature update and b
The following packages are included:

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

The following `container-toolkit` conatiners are included:

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

### Fixes and Features

Expand Down
19 changes: 8 additions & 11 deletions container-toolkit/versions.json
Original file line number Diff line number Diff line change
@@ -1,30 +1,27 @@
{
"latest": "1.17.0",
"latest": "1.17.3",
"versions":
[
{
"version": "1.17.0"
"version": "1.17.3"
},
{
"version": "1.16.2"
"version": "1.17.2"
},
{
"version": "1.16.1"
"version": "1.17.1"
},
{
"version": "1.16.0"
"version": "1.17.0"
},
{
"version": "1.15.0"
"version": "1.16.2"
},
{
"version": "1.14.6"
"version": "1.16.1"
},
{
"version": "1.14.5"
"version": "1.16.0"
},
{
"version": "1.14.4"
}
]
}
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.0"
version = "1.17.3"
copyright_start = 2020
redirects = [
{ path="concepts.html", target="index.html" },
Expand Down
Loading