This repository has been archived by the owner on Dec 7, 2023. It is now read-only.
v0.5.5
This is the fifth patch release in the v0.5.X
series, containing bugfixes:
It moves the blocking SSH wait for vm's run with --ssh
to using the actual protocol.
It also fixes a locale bug with resize2fs
parsing that used to occur when using zh_CN.utf8
.
Bug Fixes
- Breakout and test resize2fs parsing with localized strings + fix for zh_CN.utf8 (#473, @stealthybox)
- Refactor SSH wait (#474, @stealthybox)
- Use SSH Dial to check if SSH service is really running (#469, @chanwit)
Documentation
- Ensure CNI bin dir exists before installing (#471, @stealthybox)
- Bump docs install version to v0.5.5 (@stealthybox)
Trying it out / Next Steps!
In short:
export VERSION=v0.5.5
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