Skip to content

Commit

Permalink
Updated recommended version of runc to 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Madeeks committed Oct 29, 2024
1 parent 6e1f0e6 commit 3578b9c
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [Unreleased]

### Changed

- Updated recommended runc version to 1.2.0

### Removed

- Removed the CI test with Spack on CentOS 7
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.14/runc.amd64 && \
wget -O runc.amd64 https://github.com/opencontainers/runc/releases/download/v1.2.0/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:38.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.14
# - Runc version 1.2.0
# - 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.14
# - Runc version 1.2.0

# 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 @@ -138,7 +138,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.5.tar.gz https://github.com/opencontainers/runc/releases/download/v1.1.14/libseccomp-2.5.5.tar.gz
wget -O ${prefix_dir}/licenses/libseccomp-2.5.5.tar.gz https://github.com/opencontainers/runc/releases/download/v1.2.0/libseccomp-2.5.5.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.14**.
the Open Container Initiative. The recommended version is **v1.2.0**.

.. important::
Due to the changes and hardening measures they introduced,
Expand Down

0 comments on commit 3578b9c

Please sign in to comment.