Skip to content
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

chore: update versions #266

Merged
merged 1 commit into from
May 20, 2024
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
2 changes: 1 addition & 1 deletion flannel/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ set -o xtrace
set -o errexit
set -o nounset

export PKG_FLANNEL_VERSION=${PKG_FLANNEL_VERSION:-1.2.0}
export PKG_FLANNEL_VERSION=${PKG_FLANNEL_VERSION:-1.4.1-flannel1}
export PKG_CNI_PLUGINS_INSTALL_FLANNEL=true
export PKG="cni-plugins"
export PKG_COMMANDS_LIST="docker,kind,kubectl"
Expand Down
6 changes: 3 additions & 3 deletions pause/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,13 @@ if ! command -v cnitool; then
fi

# runc - CLI tool for spawning and running containers according to the OCI specification.
if ! command -v runc || [ "$(runc --version | awk 'NR==1{print $3}')" != "1.1.8" ]; then
sudo curl -o /usr/bin/runc -L https://github.com/opencontainers/runc/releases/download/v1.1.8/runc.amd64
if ! command -v runc || [ "$(runc --version | awk 'NR==1{print $3}')" != "1.1.12" ]; then
sudo curl -o /usr/bin/runc -L https://github.com/opencontainers/runc/releases/download/v1.1.12/runc.amd64
sudo chmod +x /usr/bin/runc
fi

# recvtty - Reference implementation of a consumer of runC's --console-socket API
if ! command -v recvtty; then
go install github.com/opencontainers/runc/contrib/cmd/[email protected].8
go install github.com/opencontainers/runc/contrib/cmd/[email protected].12
sudo mv ~/go/bin/recvtty /usr/bin/
fi
Loading