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

v0.5.3

Compare
Choose a tag to compare
@stealthybox stealthybox released this 16 Sep 22:21

This is the third patch release in the v0.5.X series, containing one enhancement that helps projects using the ignite binary parse version information without root.

Note: dependent modules were calculated with a newer version of go; see #433

Enhancements

  • backport: skip root requirement for ignite version (#430, @chanwit)

Trying it out / Next Steps!

In short:

export VERSION=v0.5.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

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


OCI images for this release