Skip to content

Commit

Permalink
Upgrade pinned versions
Browse files Browse the repository at this point in the history
  • Loading branch information
electrocucaracha committed Feb 17, 2025
1 parent aaa1d96 commit 932da34
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bash/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM kindest/node:v1.32.1
FROM kindest/node:v1.32.2

COPY bin/plugin.sh /opt/cni/bin/bash-cni

Expand Down
2 changes: 1 addition & 1 deletion flannel/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM kindest/node:v1.32.1
FROM kindest/node:v1.32.2

SHELL ["/bin/bash", "-o", "pipefail", "-c"]
RUN echo "wireshark-common wireshark-common/install-setuid boolean true" | debconf-set-selections && \
Expand Down
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.6.0-flannel1}
export PKG_FLANNEL_VERSION=${PKG_FLANNEL_VERSION:-1.6.2-flannel1}
export PKG_CNI_PLUGINS_INSTALL_FLANNEL=true
export PKG="cni-plugins"
export PKG_COMMANDS_LIST="docker,kind,kubectl"
Expand Down
4 changes: 2 additions & 2 deletions pause/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ 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.2.4" ]; then
sudo curl -o /usr/bin/runc -L https://github.com/opencontainers/runc/releases/download/v1.2.4/runc.amd64
if ! command -v runc || [ "$(runc --version | awk 'NR==1{print $3}')" != "1.2.5" ]; then
sudo curl -o /usr/bin/runc -L https://github.com/opencontainers/runc/releases/download/v1.2.5/runc.amd64
sudo chmod +x /usr/bin/runc
fi

Expand Down

0 comments on commit 932da34

Please sign in to comment.