Skip to content

Commit

Permalink
Updated recommended runc version to v1.1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
Madeeks committed Aug 29, 2023
1 parent 0ab9b3e commit 49c2ec5
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [Unreleased]

### Changed

- Updated recommended runc version to 1.1.9


## [1.6.0]

### Added
Expand Down
2 changes: 1 addition & 1 deletion CI/installation/install_dep_runc.bash
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pwd_bak=$PWD

# Install runc
cd /tmp && \
wget -O runc.amd64 https://github.com/opencontainers/runc/releases/download/v1.1.6/runc.amd64 && \
wget -O runc.amd64 https://github.com/opencontainers/runc/releases/download/v1.1.9/runc.amd64 && \
chmod 755 runc.amd64 && \
sudo mv runc.amd64 /usr/local/bin/ && \
sudo chown root:root /usr/local/bin/runc.amd64 && \
Expand Down
2 changes: 1 addition & 1 deletion CI/installation/install_packages_fedora:36.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ sudo rm -rf /var/cache/dnf

# The following dependencies are not provided via the system's package manager
# and should be installed manually:
# - Runc version 1.1.6
# - Runc version 1.1.9
# - Umoci

# DOCS: END
Expand Down
2 changes: 1 addition & 1 deletion CI/installation/install_packages_ubuntu:22.04.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ sudo rm -rf /var/lib/apt/lists/*

# The following dependencies are not provided via the system's package manager
# and should be installed manually:
# - Runc version 1.1.6
# - Runc version 1.1.9

# DOCS: END

Expand Down
2 changes: 1 addition & 1 deletion CI/utility_functions.bash
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ build_sarus_archive() {

# runc is statically linked with libseccomp, which is licensed under GNU LGPL-2.1.
# To comply with LGPL-2.1 (§6(a)), include the libseccomp source code in the licenses folder.
wget -O ${prefix_dir}/licenses/libseccomp-2.5.4.tar.gz https://github.com/opencontainers/runc/releases/download/v1.1.6/libseccomp-2.5.4.tar.gz
wget -O ${prefix_dir}/licenses/libseccomp-2.5.4.tar.gz https://github.com/opencontainers/runc/releases/download/v1.1.9/libseccomp-2.5.4.tar.gz

mkdir -pv ${prefix_dir}/var/OCIBundleDir

Expand Down
2 changes: 1 addition & 1 deletion doc/install/requirements.rst
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ Sarus internally relies on an OCI-compliant runtime to spawn a container.

Here we will provide some indications to install `runc
<https://github.com/opencontainers/runc>`_, the reference implementation from
the Open Container Initiative. The recommended version is **v1.1.6**.
the Open Container Initiative. The recommended version is **v1.1.9**.

.. note::
runc versions from 1.1.0 to 1.1.2 have a bug which causes an error when
Expand Down

0 comments on commit 49c2ec5

Please sign in to comment.