Skip to content
This repository has been archived by the owner on Dec 7, 2023. It is now read-only.

v0.6.3

Compare
Choose a tag to compare
@stealthybox stealthybox released this 10 Dec 07:16

v0.6.3

Released: 10/12/2019

This is the third patch release in the v0.6.x series, containing 1 security bug fix.

See #500 for ignite-specific details regarding this CVE.

Security Bug Fixes

Trying it out / Next Steps!

In short:

export VERSION=v0.6.3
export GOARCH=$(go env GOARCH 2>/dev/null || echo "amd64")

for binary in ignite ignited; do
    echo "Installing ${binary}..."
    curl -sfLo ${binary} https://github.com/weaveworks/ignite/releases/download/${VERSION}/${binary}-${GOARCH}
    chmod +x ${binary}
    sudo mv ${binary} /usr/local/bin
done

export CNI_VERSION=v0.8.2
export ARCH=$([ $(uname -m) = "x86_64" ] && echo amd64 || echo arm64)
mkdir -p /opt/cni/bin
curl -sSL https://github.com/containernetworking/plugins/releases/download/${CNI_VERSION}/cni-plugins-linux-${ARCH}-${CNI_VERSION}.tgz | tar -xz -C /opt/cni/bin

A more throughout installation guide is available here: https://ignite.readthedocs.io/en/latest/installation.html


OCI images for this release