Releases: mistio/mist-cli
Releases · mistio/mist-cli
v0.9.0
- Feature: Introduce
kubeconfig
command for configuring kubectl access to cluster
- Change: Improve readability of booleans in table view
- Change: Improve readability of nested data on commands that override table view
- Change: Revamp waiters error handling
- Change: Revamp ssh command error handling
- Change: Improve help messages for tag/untag commands
- Bugfix: Display only ssh-able machines on ssh's autocomplete
- Bugfix: Fix missing entries on autocomplete
Installation
Instructions
Linux
- Download the latest release with the command:
curl -LO "https://dl.mist.io/cli/v0.9.0/bin/linux/amd64/mist"
- Validate the binary (optional):
Download the mist checksum file:
curl -LO "https://dl.mist.io/cli/v0.9.0/bin/linux/amd64/mist.sha256"
Validate the mist binary against the checksum file:
echo "$(<mist.sha256) mist" | sha256sum --check
If valid, the output is:
If the check fails, sha256 exits with nonzero status and prints output similar to:
mist: FAILED
sha256sum: WARNING: 1 computed checksum did NOT match
- Make mist binary executable:
- Install mist on path (optional):
e.g.
mv mist /usr/local/bin/mist
- Enable mist autocompletion on all your sessions (optional):
Bash
echo 'source <(mist completion bash)' >>~/.bashrc
Zsh
echo 'source <(mist completion zsh)' >>~/.zshrc
MacOS
- Download the latest release with the command:
curl -LO "https://dl.mist.io/cli/v0.9.0/bin/darwin/amd64/mist"
- Validate the binary (optional):
Download the mist checksum file:
curl -LO "https://dl.mist.io/cli/v0.9.0/bin/darwin/amd64/mist.sha256"
Validate the mist binary against the checksum file:
echo "$(<mist.sha256) mist" | sha256sum --check
If valid, the output is:
If the check fails, sha256 exits with nonzero status and prints output similar to:
mist: FAILED
sha256sum: WARNING: 1 computed checksum did NOT match
- Make mist binary executable:
- Install mist on path (optional):
e.g.
sudo mv ./mist /usr/local/bin/mist
sudo chown root: /usr/local/bin/mist
- Enable mist autocompletion on all your sessions (optional):
Bash
- Check bash version
- Install/upgrade bash to v4.0+ if older
- Source completion script
echo 'source <(mist completion bash)' >>~/.bash_profile
Zsh
echo 'source <(mist completion zsh)' >>~/.zshrc
Windows
- Download the latest release with the command:
curl -LO "https://dl.mist.io/cli/v0.9.0/bin/windows/amd64/mist.exe"
- Validate the binary (optional):
Download the mist checksum file:
curl -LO "https://dl.mist.io/cli/v0.9.0/bin/windows/amd64/mist.exe.sha256"
Validate the mist binary against the checksum file:
- Using Command Prompt to manually compare CertUtil's output to the checksum file downloaded:
CertUtil -hashfile mist.exe SHA256
type mist.exe.sha256
- Using PowerShell to automate the verification using the -eq operator to get a True or False result:
$($(CertUtil -hashfile .\mist.exe SHA256)[1] -replace " ", "") -eq $(type .\mist.exe.sha256)
- Add the binary in to your
PATH
.
- Install mist on path (optional):
e.g.
mv mist /usr/local/bin/mist
- Enable mist autocompletion on all your sessions (optional):
Powershell
mist completion powershell
Bash
echo 'source <(mist completion bash)' >>~/.bashrc
Zsh
echo 'source <(mist completion zsh)' >>~/.zshrc
Binaries
Linux
Arch |
SHA256 |
amd64 |
d368c3396de11217ffb366e0b9f41720164c14d247b6c15b51d7054f288e0ad7 |
arm64 |
8ad146c1b1093bf15e75b897e51dc807a49497d31a8ee6970fd13399c5a15328 |
Darwin
Arch |
SHA256 |
amd64 |
175537a2411fdfc25e9129bc3f7132fee63e0728fe6f6a3b8db619ab0008277c |
arm64 |
4d3c5c2f990c23c09da4d4a7d9283e9d6a8c0ffdf0f8bf204b8cb6029243fe6f |
Windows
Arch |
SHA256 |
amd64 |
b4863aba0e224e311464fc32eacf55005c26498f42aadebeb97f3a05945d023c |
Freebsd
Arch |
SHA256 |
amd64 |
67e38244d0c745b36b79e7285c99ada369f91716fd672cec31198e2c0c2e0d80 |
arm64 |
18d651986f8d8a2d390ff5d43094ee0dfc9df284671784927558720eab4110da |
Openbsd
Arch |
SHA256 |
amd64 |
96e8b8b09bd5756aa51fe9de4fcc516733ae126229f1b2ce0ff8ba7c73438a03 |
arm64 |
1f9399c5ce05fd20d7966362798407e9031dae4834e78c5b1441d028eb8f1858 |
Netbsd
Arch |
SHA256 |
amd64 |
67da1206a874aba9075219de4a18536399f8ae556fb82393eecfb1ea88c5a1b8 |
arm64 |
6aa30e85d710dfdfff414f8d820dae270dfef70c251d5ed543c5f9ccd27bd834 |
v0.8.0
- Feature: Add tag/untag support for resources
- Feature: Fetch the raw credentials for clusters, keys and secrets with a CLI argument
- Feature: Add delete-context & rename-context
- Feature: Add secrets support (Mist v5)
- Feature: Add
at
parameter for fetching resources
- Feature: Add metering for volumes
- Change: Set newly created context as the default
- Bugfix: Fix meter command
Installation
Instructions
Linux
- Download the latest release with the command:
curl -LO "https://dl.mist.io/cli/v0.8.0/bin/linux/amd64/mist"
- Validate the binary (optional):
Download the mist checksum file:
curl -LO "https://dl.mist.io/cli/v0.8.0/bin/linux/amd64/mist.sha256"
Validate the mist binary against the checksum file:
echo "$(<mist.sha256) mist" | sha256sum --check
If valid, the output is:
If the check fails, sha256 exits with nonzero status and prints output similar to:
mist: FAILED
sha256sum: WARNING: 1 computed checksum did NOT match
- Make mist binary executable:
- Install mist on path (optional):
e.g.
mv mist /usr/local/bin/mist
- Enable mist autocompletion on all your sessions (optional):
Bash
echo 'source <(mist completion bash)' >>~/.bashrc
Zsh
echo 'source <(mist completion zsh)' >>~/.zshrc
MacOS
- Download the latest release with the command:
curl -LO "https://dl.mist.io/cli/v0.8.0/bin/darwin/amd64/mist"
- Validate the binary (optional):
Download the mist checksum file:
curl -LO "https://dl.mist.io/cli/v0.8.0/bin/darwin/amd64/mist.sha256"
Validate the mist binary against the checksum file:
echo "$(<mist.sha256) mist" | sha256sum --check
If valid, the output is:
If the check fails, sha256 exits with nonzero status and prints output similar to:
mist: FAILED
sha256sum: WARNING: 1 computed checksum did NOT match
- Make mist binary executable:
- Install mist on path (optional):
e.g.
sudo mv ./mist /usr/local/bin/mist
sudo chown root: /usr/local/bin/mist
- Enable mist autocompletion on all your sessions (optional):
Bash
- Check bash version
- Install/upgrade bash to v4.0+ if older
- Source completion script
echo 'source <(mist completion bash)' >>~/.bash_profile
Zsh
echo 'source <(mist completion zsh)' >>~/.zshrc
Windows
- Download the latest release with the command:
curl -LO "https://dl.mist.io/cli/v0.8.0/bin/windows/amd64/mist.exe"
- Validate the binary (optional):
Download the mist checksum file:
curl -LO "https://dl.mist.io/cli/v0.8.0/bin/windows/amd64/mist.exe.sha256"
Validate the mist binary against the checksum file:
- Using Command Prompt to manually compare CertUtil's output to the checksum file downloaded:
CertUtil -hashfile mist.exe SHA256
type mist.exe.sha256
- Using PowerShell to automate the verification using the -eq operator to get a True or False result:
$($(CertUtil -hashfile .\mist.exe SHA256)[1] -replace " ", "") -eq $(type .\mist.exe.sha256)
- Add the binary in to your
PATH
.
- Install mist on path (optional):
e.g.
mv mist /usr/local/bin/mist
- Enable mist autocompletion on all your sessions (optional):
Powershell
mist completion powershell
Bash
echo 'source <(mist completion bash)' >>~/.bashrc
Zsh
echo 'source <(mist completion zsh)' >>~/.zshrc
Binaries
Linux
Arch |
SHA256 |
amd64 |
cd70aaca32d2b59ca29d87e6bfea5cd806338ec16be60f7923e825511089bf04 |
arm64 |
384f661641f031fc2a818aec10cc32203ec9080ca96467db472b8ce13a0de5fa |
Darwin
Arch |
SHA256 |
amd64 |
c8e8135274138b9f19ab8499027dba03a5019bc0e71bb9f7b7d94949b5aba491 |
arm64 |
e80be0aa2557be470a9fada25521570354a8596b84fe11fa44f1cdae71465cbc |
Windows
Arch |
SHA256 |
amd64 |
1781861ed35e7ce1a6828a12c417fe5708dfd81bfdb127d0be50ccf0d256e39c |
Freebsd
Arch |
SHA256 |
amd64 |
ed8e3ca674c7f31cb7ed7892d0dc68451f9e32f80f22286d568537a6f1d7c80c |
arm64 |
1c61b6c6f8f59e7dfbc20f3cf628a90ccf553da738fc48fd7e537dc8b54bf9c5 |
Openbsd
Arch |
SHA256 |
amd64 |
030e0a3d87090744a9af33f9625b29a14bf8999286740e39112d7f527a5bff4e |
arm64 |
2e7441ecfedc7d26521058dd74c726946a471398aafbb4b7133f70b35cbbfa62 |
Netbsd
Arch |
SHA256 |
amd64 |
5c28b7c0952600bb054d0f802fccf967c6a4fba58e169a82c784a29e390a19b5 |
arm64 |
2acfb062790484e7328cc71d01424cf6906df67383648b005dafa640d039c976 |
v0.7.6
- Bugfix: Fix help display issue
Installation
Instructions
Linux
- Download the latest release with the command:
curl -LO "https://dl.mist.io/cli/v0.7.6/bin/linux/amd64/mist"
- Validate the binary (optional):
Download the mist checksum file:
curl -LO "https://dl.mist.io/cli/v0.7.6/bin/linux/amd64/mist.sha256"
Validate the mist binary against the checksum file:
echo "$(<mist.sha256) mist" | sha256sum --check
If valid, the output is:
If the check fails, sha256 exits with nonzero status and prints output similar to:
mist: FAILED
sha256sum: WARNING: 1 computed checksum did NOT match
- Make mist binary executable:
- Install mist on path (optional):
e.g.
mv mist /usr/local/bin/mist
- Enable mist autocompletion on all your sessions (optional):
Bash
echo 'source <(mist completion bash)' >>~/.bashrc
Zsh
echo 'source <(mist completion zsh)' >>~/.zshrc
MacOS
- Download the latest release with the command:
curl -LO "https://dl.mist.io/cli/v0.7.6/bin/darwin/amd64/mist"
- Validate the binary (optional):
Download the mist checksum file:
curl -LO "https://dl.mist.io/cli/v0.7.6/bin/darwin/amd64/mist.sha256"
Validate the mist binary against the checksum file:
echo "$(<mist.sha256) mist" | sha256sum --check
If valid, the output is:
If the check fails, sha256 exits with nonzero status and prints output similar to:
mist: FAILED
sha256sum: WARNING: 1 computed checksum did NOT match
- Make mist binary executable:
- Install mist on path (optional):
e.g.
sudo mv ./mist /usr/local/bin/mist
sudo chown root: /usr/local/bin/mist
- Enable mist autocompletion on all your sessions (optional):
Bash
- Check bash version
- Install/upgrade bash to v4.0+ if older
- Source completion script
echo 'source <(mist completion bash)' >>~/.bash_profile
Zsh
echo 'source <(mist completion zsh)' >>~/.zshrc
Windows
- Download the latest release with the command:
curl -LO "https://dl.mist.io/cli/v0.7.6/bin/windows/amd64/mist.exe"
- Validate the binary (optional):
Download the mist checksum file:
curl -LO "https://dl.mist.io/cli/v0.7.6/bin/windows/amd64/mist.exe.sha256"
Validate the mist binary against the checksum file:
- Using Command Prompt to manually compare CertUtil's output to the checksum file downloaded:
CertUtil -hashfile mist.exe SHA256
type mist.exe.sha256
- Using PowerShell to automate the verification using the -eq operator to get a True or False result:
$($(CertUtil -hashfile .\mist.exe SHA256)[1] -replace " ", "") -eq $(type .\mist.exe.sha256)
- Add the binary in to your
PATH
.
- Install mist on path (optional):
e.g.
mv mist /usr/local/bin/mist
- Enable mist autocompletion on all your sessions (optional):
Powershell
mist completion powershell
Bash
echo 'source <(mist completion bash)' >>~/.bashrc
Zsh
echo 'source <(mist completion zsh)' >>~/.zshrc
Binaries
Linux
Arch |
SHA256 |
amd64 |
7f9eb17943157522f3646b1a6f8a373591f8fa34214aba7b46691c4d0210cf08 |
arm64 |
bc192ef110dcce1af45f375bda3ca31931644dac3d7fe2dba7b36886361815fd |
Darwin
Arch |
SHA256 |
amd64 |
bf48d72aa1060c2f530b19055a67d35a6cab3a056028cf8e7bbfda06b4088994 |
arm64 |
5bf4763e6f17e710791a5d4b1e1e0bad71d31b88b5760d30c0317fb9c45e3026 |
Windows
Arch |
SHA256 |
amd64 |
6be484176650daa2863155643c71ecbc6bc390ade08e1de15a87575a7347e232 |
Freebsd
Arch |
SHA256 |
amd64 |
df0653eb10629eaab2f78330069091a9378903a11a169209732c7e4b77fc1b83 |
arm64 |
f7e487faf8e5ad99dac33499203c49a7861b906dfe2575160866433c1dfd6276 |
Openbsd
Arch |
SHA256 |
amd64 |
dd8b8be6fc080340e747231533b54dd929f9f787f41a0288db522cfccaa852d7 |
arm64 |
d6c8e9a59414a6cd3d57c8888a4a660bd3aaa85c8e119448ff63c898dc21e353 |
Netbsd
Arch |
SHA256 |
amd64 |
6c677ac018ce0ca8a272e489ce1fd4d9c14d533df3716e780b71a5f857b6e413 |
arm64 |
689d2118a83b17f0be915bbc5b174e577860fd064a9197aff4458c2dc4fca435 |
v0.7.5
- Bugfix: Fix adding initial context
- Bugfix: Fix missing API doc URL
Installation
Instructions
Linux
- Download the latest release with the command:
curl -LO "https://dl.mist.io/cli/v0.7.5/bin/linux/amd64/mist"
- Validate the binary (optional):
Download the mist checksum file:
curl -LO "https://dl.mist.io/cli/v0.7.5/bin/linux/amd64/mist.sha256"
Validate the mist binary against the checksum file:
echo "$(<mist.sha256) mist" | sha256sum --check
If valid, the output is:
If the check fails, sha256 exits with nonzero status and prints output similar to:
mist: FAILED
sha256sum: WARNING: 1 computed checksum did NOT match
- Make mist binary executable:
- Install mist on path (optional):
e.g.
mv mist /usr/local/bin/mist
- Enable mist autocompletion on all your sessions (optional):
Bash
echo 'source <(mist completion bash)' >>~/.bashrc
Zsh
echo 'source <(mist completion zsh)' >>~/.zshrc
MacOS
- Download the latest release with the command:
curl -LO "https://dl.mist.io/cli/v0.7.5/bin/darwin/amd64/mist"
- Validate the binary (optional):
Download the mist checksum file:
curl -LO "https://dl.mist.io/cli/v0.7.5/bin/darwin/amd64/mist.sha256"
Validate the mist binary against the checksum file:
echo "$(<mist.sha256) mist" | sha256sum --check
If valid, the output is:
If the check fails, sha256 exits with nonzero status and prints output similar to:
mist: FAILED
sha256sum: WARNING: 1 computed checksum did NOT match
- Make mist binary executable:
- Install mist on path (optional):
e.g.
sudo mv ./mist /usr/local/bin/mist
sudo chown root: /usr/local/bin/mist
- Enable mist autocompletion on all your sessions (optional):
Bash
- Check bash version
- Install/upgrade bash to v4.0+ if older
- Source completion script
echo 'source <(mist completion bash)' >>~/.bash_profile
Zsh
echo 'source <(mist completion zsh)' >>~/.zshrc
Windows
- Download the latest release with the command:
curl -LO "https://dl.mist.io/cli/v0.7.5/bin/windows/amd64/mist.exe"
- Validate the binary (optional):
Download the mist checksum file:
curl -LO "https://dl.mist.io/cli/v0.7.5/bin/windows/amd64/mist.exe.sha256"
Validate the mist binary against the checksum file:
- Using Command Prompt to manually compare CertUtil's output to the checksum file downloaded:
CertUtil -hashfile mist.exe SHA256
type mist.exe.sha256
- Using PowerShell to automate the verification using the -eq operator to get a True or False result:
$($(CertUtil -hashfile .\mist.exe SHA256)[1] -replace " ", "") -eq $(type .\mist.exe.sha256)
- Add the binary in to your
PATH
.
- Install mist on path (optional):
e.g.
mv mist /usr/local/bin/mist
- Enable mist autocompletion on all your sessions (optional):
Powershell
mist completion powershell
Bash
echo 'source <(mist completion bash)' >>~/.bashrc
Zsh
echo 'source <(mist completion zsh)' >>~/.zshrc
Binaries
Linux
Arch |
SHA256 |
amd64 |
aaa39d885c87109cee828a02c4269a0ecdc5b6affd50320522e080f44d56d008 |
arm64 |
9a9bf552532f3720d3cf45b73facaeb2433cf1a57eeb7d59f57cebdba430fcfc |
Darwin
Arch |
SHA256 |
amd64 |
3880cfc2d672af74bb90523b240dd624ccf79d9e81a22756d270157a687ecae8 |
arm64 |
841a073d88ace46ed938deb8239457577b7d8d2b7b8eccbd191313a946709235 |
Windows
Arch |
SHA256 |
amd64 |
b084292916eec8989eaa176e318517391b87dd3894879a3c9729bf37fdf51e01 |
Freebsd
Arch |
SHA256 |
amd64 |
2d37ece2bb12dd179a14874bca0055bb9f64c0a5cf6b9b2ebb45a777fe61da0b |
arm64 |
e4ae4d05c6fd2de32c9dfd3bcea28227937d37e1982256130ddfec57a0ef7ece |
Openbsd
Arch |
SHA256 |
amd64 |
82a74e6548da722ebfaea6ae061acb33124f5691debb9bc6299f68ca917ee4a6 |
arm64 |
55e1b384543b6d6e9f04edadc336e353b19b91cce56449ea6a9ce99af61bc683 |
Netbsd
Arch |
SHA256 |
amd64 |
d756ed0e1dbf1ff6068c222c6b0b679c4e5388ffab2e75be55fff6e91f096528 |
arm64 |
71ac15f8ed312a39054553e9c85cdc382a38440c6a6fedce758b7b9cc2e96772 |
v0.7.4
- Bugfix: Fix machine actions
- Bugfix: Display all available examples in help
Installation
Instructions
Linux
- Download the latest release with the command:
curl -LO "https://dl.mist.io/cli/v0.7.4/bin/linux/amd64/mist"
- Validate the binary (optional):
Download the mist checksum file:
curl -LO "https://dl.mist.io/cli/v0.7.4/bin/linux/amd64/mist.sha256"
Validate the mist binary against the checksum file:
echo "$(<mist.sha256) mist" | sha256sum --check
If valid, the output is:
If the check fails, sha256 exits with nonzero status and prints output similar to:
mist: FAILED
sha256sum: WARNING: 1 computed checksum did NOT match
- Make mist binary executable:
- Install mist on path (optional):
e.g.
mv mist /usr/local/bin/mist
- Enable mist autocompletion on all your sessions (optional):
Bash
echo 'source <(mist completion bash)' >>~/.bashrc
Zsh
echo 'source <(mist completion zsh)' >>~/.zshrc
MacOS
- Download the latest release with the command:
curl -LO "https://dl.mist.io/cli/v0.7.4/bin/darwin/amd64/mist"
- Validate the binary (optional):
Download the mist checksum file:
curl -LO "https://dl.mist.io/cli/v0.7.4/bin/darwin/amd64/mist.sha256"
Validate the mist binary against the checksum file:
echo "$(<mist.sha256) mist" | sha256sum --check
If valid, the output is:
If the check fails, sha256 exits with nonzero status and prints output similar to:
mist: FAILED
sha256sum: WARNING: 1 computed checksum did NOT match
- Make mist binary executable:
- Install mist on path (optional):
e.g.
sudo mv ./mist /usr/local/bin/mist
sudo chown root: /usr/local/bin/mist
- Enable mist autocompletion on all your sessions (optional):
Bash
- Check bash version
- Install/upgrade bash to v4.0+ if older
- Source completion script
echo 'source <(mist completion bash)' >>~/.bash_profile
Zsh
echo 'source <(mist completion zsh)' >>~/.zshrc
Windows
- Download the latest release with the command:
curl -LO "https://dl.mist.io/cli/v0.7.4/bin/windows/amd64/mist.exe"
- Validate the binary (optional):
Download the mist checksum file:
curl -LO "https://dl.mist.io/cli/v0.7.4/bin/windows/amd64/mist.exe.sha256"
Validate the mist binary against the checksum file:
- Using Command Prompt to manually compare CertUtil's output to the checksum file downloaded:
CertUtil -hashfile mist.exe SHA256
type mist.exe.sha256
- Using PowerShell to automate the verification using the -eq operator to get a True or False result:
$($(CertUtil -hashfile .\mist.exe SHA256)[1] -replace " ", "") -eq $(type .\mist.exe.sha256)
- Add the binary in to your
PATH
.
- Install mist on path (optional):
e.g.
mv mist /usr/local/bin/mist
- Enable mist autocompletion on all your sessions (optional):
Powershell
mist completion powershell
Bash
echo 'source <(mist completion bash)' >>~/.bashrc
Zsh
echo 'source <(mist completion zsh)' >>~/.zshrc
Binaries
Linux
Arch |
SHA256 |
amd64 |
fb0790f93c09dcff58bc2d8f4738ba7b9e132361f08ab2a6679251769bcff840 |
arm64 |
860100149e6e85479bcb82742e96d0f5a7af72a67c83fd2d593156a8728160c5 |
Darwin
Arch |
SHA256 |
amd64 |
8ef950a19542b803e4b37bef83b3b82fc7a434ddf82a27886520c06e67cce322 |
arm64 |
728db0693e172161949224b31439b774d884211c3732c4b51c0d74eefdc342df |
Windows
Arch |
SHA256 |
amd64 |
2774a148055cc1db94d8a28d9dd825fc3313435b4312d338e3d35d959be08caf |
Freebsd
Arch |
SHA256 |
amd64 |
21b5fc0590061a7b7d8b1672875a2fb4c1f70731317a717e24fece869e55d15a |
arm64 |
e0d33ea4515ba851ff4e14eb5a2939f9e83929fa4adacf98e681882162e93c54 |
Openbsd
Arch |
SHA256 |
amd64 |
f5186b38b184328bd895b302d5446d07c897c3ae39611aa07e05dca2774f263e |
arm64 |
226f3bf48a6db2fbd39684d34850dfdd28e8384493697b8114151d8b13947ff4 |
Netbsd
Arch |
SHA256 |
amd64 |
8f83fe62a24a207553c0264da00c44e2eab49528f54b25a5d418925aeec9a0dc |
arm64 |
3e68a0cd61811449c3061c3688e1f25ad19d0430557370d9fe6217812bab41fe |
v0.7.3
- Bugfix: Restore resource aliases
- Bugfix: Add missing fields
- Change: Improve help messages
Installation
Instructions
Linux
- Download the latest release with the command:
curl -LO "https://dl.mist.io/cli/v0.7.3/bin/linux/amd64/mist"
- Validate the binary (optional):
Download the mist checksum file:
curl -LO "https://dl.mist.io/cli/v0.7.3/bin/linux/amd64/mist.sha256"
Validate the mist binary against the checksum file:
echo "$(<mist.sha256) mist" | sha256sum --check
If valid, the output is:
If the check fails, sha256 exits with nonzero status and prints output similar to:
mist: FAILED
sha256sum: WARNING: 1 computed checksum did NOT match
- Make mist binary executable:
- Install mist on path (optional):
e.g.
mv mist /usr/local/bin/mist
- Enable mist autocompletion on all your sessions (optional):
Bash
echo 'source <(mist completion bash)' >>~/.bashrc
Zsh
echo 'source <(mist completion zsh)' >>~/.zshrc
MacOS
- Download the latest release with the command:
curl -LO "https://dl.mist.io/cli/v0.7.3/bin/darwin/amd64/mist"
- Validate the binary (optional):
Download the mist checksum file:
curl -LO "https://dl.mist.io/cli/v0.7.3/bin/darwin/amd64/mist.sha256"
Validate the mist binary against the checksum file:
echo "$(<mist.sha256) mist" | sha256sum --check
If valid, the output is:
If the check fails, sha256 exits with nonzero status and prints output similar to:
mist: FAILED
sha256sum: WARNING: 1 computed checksum did NOT match
- Make mist binary executable:
- Install mist on path (optional):
e.g.
sudo mv ./mist /usr/local/bin/mist
sudo chown root: /usr/local/bin/mist
- Enable mist autocompletion on all your sessions (optional):
Bash
- Check bash version
- Install/upgrade bash to v4.0+ if older
- Source completion script
echo 'source <(mist completion bash)' >>~/.bash_profile
Zsh
echo 'source <(mist completion zsh)' >>~/.zshrc
Windows
- Download the latest release with the command:
curl -LO "https://dl.mist.io/cli/v0.7.3/bin/windows/amd64/mist.exe"
- Validate the binary (optional):
Download the mist checksum file:
curl -LO "https://dl.mist.io/cli/v0.7.3/bin/windows/amd64/mist.exe.sha256"
Validate the mist binary against the checksum file:
- Using Command Prompt to manually compare CertUtil's output to the checksum file downloaded:
CertUtil -hashfile mist.exe SHA256
type mist.exe.sha256
- Using PowerShell to automate the verification using the -eq operator to get a True or False result:
$($(CertUtil -hashfile .\mist.exe SHA256)[1] -replace " ", "") -eq $(type .\mist.exe.sha256)
- Add the binary in to your
PATH
.
- Install mist on path (optional):
e.g.
mv mist /usr/local/bin/mist
- Enable mist autocompletion on all your sessions (optional):
Powershell
mist completion powershell
Bash
echo 'source <(mist completion bash)' >>~/.bashrc
Zsh
echo 'source <(mist completion zsh)' >>~/.zshrc
Binaries
Linux
Arch |
SHA256 |
amd64 |
74491eed8c4d3a77f59f719302983dd1ae60db4935984361ec4339f81d3d45b1 |
arm64 |
9a618c53ec08461b5859a30a2d2f4d38b8d1ea8f6eca3b195f754ceb662a9887 |
Darwin
Arch |
SHA256 |
amd64 |
9d993491514e563aa69c530d3a150f1c756f2061a7b4bfcb755d8929ff414ddd |
arm64 |
57abbf523b966f600fa30a1ddb0546b4d64bd53ddfebfaa8a14dfa3dc33d494f |
Windows
Arch |
SHA256 |
amd64 |
0384025b942bdce9bdf3ae101d2df3a54ace8573b693461535a05a9353322278 |
Freebsd
Arch |
SHA256 |
amd64 |
05d8c3a35c80e96f4bf6d03c30417ffcf03952cfb380f644a70fea72cb710e3e |
arm64 |
4db11f1bb001306cc75ac6d470890ac56c35b535718ac314939ebd8e7d060d97 |
Openbsd
Arch |
SHA256 |
amd64 |
c12d426a4191128ac10d46caac7d264358a12c4841b2a73dba3a7f4c8118480c |
arm64 |
b7aad4951a6c5062b02eb4f9e7f6310b9541f88cb74cec903d87b2888554eee8 |
Netbsd
Arch |
SHA256 |
amd64 |
75a90d761140fc5039d3c42bd8480116e13ff92a510ec7208ee4e9d518ad669b |
arm64 |
0e91650164a91fdc2b6bb6f5bca63c8fb386d63adbdb5d8740fe453f77b7e61c |
v0.7.2
- Change: Improve help messages
- Change: Add delete_domain_image query param to undefine action
- Bugfix: Trim always trailing slash on server URLs
Installation
Instructions
Linux
- Download the latest release with the command:
curl -LO "https://dl.mist.io/cli/v0.7.2/bin/linux/amd64/mist"
- Validate the binary (optional):
Download the mist checksum file:
curl -LO "https://dl.mist.io/cli/v0.7.2/bin/linux/amd64/mist.sha256"
Validate the mist binary against the checksum file:
echo "$(<mist.sha256) mist" | sha256sum --check
If valid, the output is:
If the check fails, sha256 exits with nonzero status and prints output similar to:
mist: FAILED
sha256sum: WARNING: 1 computed checksum did NOT match
- Make mist binary executable:
- Install mist on path (optional):
e.g.
mv mist /usr/local/bin/mist
- Enable mist autocompletion on all your sessions (optional):
Bash
echo 'source <(mist completion bash)' >>~/.bashrc
Zsh
echo 'source <(mist completion zsh)' >>~/.zshrc
MacOS
- Download the latest release with the command:
curl -LO "https://dl.mist.io/cli/v0.7.2/bin/darwin/amd64/mist"
- Validate the binary (optional):
Download the mist checksum file:
curl -LO "https://dl.mist.io/cli/v0.7.2/bin/darwin/amd64/mist.sha256"
Validate the mist binary against the checksum file:
echo "$(<mist.sha256) mist" | sha256sum --check
If valid, the output is:
If the check fails, sha256 exits with nonzero status and prints output similar to:
mist: FAILED
sha256sum: WARNING: 1 computed checksum did NOT match
- Make mist binary executable:
- Install mist on path (optional):
e.g.
sudo mv ./mist /usr/local/bin/mist
sudo chown root: /usr/local/bin/mist
- Enable mist autocompletion on all your sessions (optional):
Bash
- Check bash version
- Install/upgrade bash to v4.0+ if older
- Source completion script
echo 'source <(mist completion bash)' >>~/.bash_profile
Zsh
echo 'source <(mist completion zsh)' >>~/.zshrc
Windows
- Download the latest release with the command:
curl -LO "https://dl.mist.io/cli/v0.7.2/bin/windows/amd64/mist.exe"
- Validate the binary (optional):
Download the mist checksum file:
curl -LO "https://dl.mist.io/cli/v0.7.2/bin/windows/amd64/mist.exe.sha256"
Validate the mist binary against the checksum file:
- Using Command Prompt to manually compare CertUtil's output to the checksum file downloaded:
CertUtil -hashfile mist.exe SHA256
type mist.exe.sha256
- Using PowerShell to automate the verification using the -eq operator to get a True or False result:
$($(CertUtil -hashfile .\mist.exe SHA256)[1] -replace " ", "") -eq $(type .\mist.exe.sha256)
- Add the binary in to your
PATH
.
- Install mist on path (optional):
e.g.
mv mist /usr/local/bin/mist
- Enable mist autocompletion on all your sessions (optional):
Powershell
mist completion powershell
Bash
echo 'source <(mist completion bash)' >>~/.bashrc
Zsh
echo 'source <(mist completion zsh)' >>~/.zshrc
Binaries
Linux
Arch |
SHA256 |
amd64 |
aebac601ff550885ca191ed1766883b65efa8a4bbbb57db1e8151c401cf58f7c |
arm64 |
607fba21d93d5354c5d92e50393b1f0d0eecb5c6f92a8121fb09253cdd04ae21 |
Darwin
Arch |
SHA256 |
amd64 |
90245d80a31f282edd31a27b72670dc77e277ae4774e35af2ce7ba7fea03303e |
arm64 |
ed9f8610f6016f52c19d0b8d537f8f98700b9c5bda34f059c29b0332be0aef04 |
Windows
Arch |
SHA256 |
amd64 |
30dde2ed704a75215e164e8d74edd05f5e6308a0b952730fd5712988fac68229 |
Freebsd
Arch |
SHA256 |
amd64 |
0f120cc4180e1283c5cb0e589a3725263c1301eec262cdfbc63e084eacfc8fbc |
arm64 |
78289023eadbbe61548020603f6f2908d6e83b5911f6a8cf70c3e1348161cc74 |
Openbsd
Arch |
SHA256 |
amd64 |
cabfb873a1f4fe875db80223331438903355adb85dc86a6827780f4ce21734d2 |
arm64 |
d566395a82354124827d50a2e9cffe59ba0c6c761b6fa6ceeab7b28b7778d7a1 |
Netbsd
Arch |
SHA256 |
amd64 |
850483e823be71c1bfa82bcb29980bd4427e60e90a0e649dd9ccc761dca156b0 |
arm64 |
c548d4f1bc92c76b23c9a60d3c1ea61d16ae4ae98c0cdc2369a67729024fd6af |
v0.7.1
- Bugfix: Fix meter command
Installation
Instructions
Linux
- Download the latest release with the command:
curl -LO "https://dl.mist.io/cli/v0.7.1/bin/linux/amd64/mist"
- Validate the binary (optional):
Download the mist checksum file:
curl -LO "https://dl.mist.io/cli/v0.7.1/bin/linux/amd64/mist.sha256"
Validate the mist binary against the checksum file:
echo "$(<mist.sha256) mist" | sha256sum --check
If valid, the output is:
If the check fails, sha256 exits with nonzero status and prints output similar to:
mist: FAILED
sha256sum: WARNING: 1 computed checksum did NOT match
- Make mist binary executable:
- Install mist on path (optional):
e.g.
mv mist /usr/local/bin/mist
- Enable mist autocompletion on all your sessions (optional):
Bash
echo 'source <(mist completion bash)' >>~/.bashrc
Zsh
echo 'source <(mist completion zsh)' >>~/.zshrc
MacOS
- Download the latest release with the command:
curl -LO "https://dl.mist.io/cli/v0.7.1/bin/darwin/amd64/mist"
- Validate the binary (optional):
Download the mist checksum file:
curl -LO "https://dl.mist.io/cli/v0.7.1/bin/darwin/amd64/mist.sha256"
Validate the mist binary against the checksum file:
echo "$(<mist.sha256) mist" | sha256sum --check
If valid, the output is:
If the check fails, sha256 exits with nonzero status and prints output similar to:
mist: FAILED
sha256sum: WARNING: 1 computed checksum did NOT match
- Make mist binary executable:
- Install mist on path (optional):
e.g.
sudo mv ./mist /usr/local/bin/mist
sudo chown root: /usr/local/bin/mist
- Enable mist autocompletion on all your sessions (optional):
Bash
- Check bash version
- Install/upgrade bash to v4.0+ if older
- Source completion script
echo 'source <(mist completion bash)' >>~/.bash_profile
Zsh
echo 'source <(mist completion zsh)' >>~/.zshrc
Windows
- Download the latest release with the command:
curl -LO "https://dl.mist.io/cli/v0.7.1/bin/windows/amd64/mist.exe"
- Validate the binary (optional):
Download the mist checksum file:
curl -LO "https://dl.mist.io/cli/v0.7.1/bin/windows/amd64/mist.exe.sha256"
Validate the mist binary against the checksum file:
- Using Command Prompt to manually compare CertUtil's output to the checksum file downloaded:
CertUtil -hashfile mist.exe SHA256
type mist.exe.sha256
- Using PowerShell to automate the verification using the -eq operator to get a True or False result:
$($(CertUtil -hashfile .\mist.exe SHA256)[1] -replace " ", "") -eq $(type .\mist.exe.sha256)
- Add the binary in to your
PATH
.
- Install mist on path (optional):
e.g.
mv mist /usr/local/bin/mist
- Enable mist autocompletion on all your sessions (optional):
Powershell
mist completion powershell
Bash
echo 'source <(mist completion bash)' >>~/.bashrc
Zsh
echo 'source <(mist completion zsh)' >>~/.zshrc
Binaries
Linux
Arch |
SHA256 |
amd64 |
67870437454a9a21122df816b936add26b009931891ea94b28ad47fb3edf3ab6 |
arm64 |
e9c5942148215130c5170acd01c0117165e00bcadc4a71ee2dd37eab603d2136 |
Darwin
Arch |
SHA256 |
amd64 |
215b91ccc7e6a218a4f8811a2e547e37341abd813f723dd92fdf4a342933bf23 |
arm64 |
c5cd420e1467e84988b695d898fba042150c3b36c364b99b9b0cc3a56fab8b5e |
Windows
Arch |
SHA256 |
amd64 |
4969f37ad0a944352ec1404b04882244a68846922d406895dc5b3770a60674a5 |
Freebsd
Arch |
SHA256 |
amd64 |
5af28d0803f7b674d5e6a828c554361ff24a64a738d0ff94a2f56b9d484c2dc5 |
arm64 |
f3d2b82c5111baa59145665a8cf854019c4af0e026eae3e4c5054e0c8deb1fa9 |
Openbsd
Arch |
SHA256 |
amd64 |
ef78e363f3c560f80ffe30c96d491cb96b15da26c8a0a6007e972f48de8de65a |
arm64 |
9cf42df2a9f44f365c67268bc74305c4960e668ffd257e250d98ba4e4c01b40e |
Netbsd
Arch |
SHA256 |
amd64 |
094f84a5ccd7469bdb14a0aa67687828820c80d471825b6e0e07003cef25eea9 |
arm64 |
444d134515cd2dfab387b9e1a7fe42a969f5dea1000e404bdc61b1027e96cb81 |
v0.7.0
- Change: Use spaces instead of dashes on all commands
Installation
Instructions
Linux
- Download the latest release with the command:
curl -LO "https://dl.mist.io/cli/v0.7.0/bin/linux/amd64/mist"
- Validate the binary (optional):
Download the mist checksum file:
curl -LO "https://dl.mist.io/cli/v0.7.0/bin/linux/amd64/mist.sha256"
Validate the mist binary against the checksum file:
echo "$(<mist.sha256) mist" | sha256sum --check
If valid, the output is:
If the check fails, sha256 exits with nonzero status and prints output similar to:
mist: FAILED
sha256sum: WARNING: 1 computed checksum did NOT match
- Make mist binary executable:
- Install mist on path (optional):
e.g.
mv mist /usr/local/bin/mist
- Enable mist autocompletion on all your sessions (optional):
Bash
echo 'source <(mist completion bash)' >>~/.bashrc
Zsh
echo 'source <(mist completion zsh)' >>~/.zshrc
MacOS
- Download the latest release with the command:
curl -LO "https://dl.mist.io/cli/v0.7.0/bin/darwin/amd64/mist"
- Validate the binary (optional):
Download the mist checksum file:
curl -LO "https://dl.mist.io/cli/v0.7.0/bin/darwin/amd64/mist.sha256"
Validate the mist binary against the checksum file:
echo "$(<mist.sha256) mist" | sha256sum --check
If valid, the output is:
If the check fails, sha256 exits with nonzero status and prints output similar to:
mist: FAILED
sha256sum: WARNING: 1 computed checksum did NOT match
- Make mist binary executable:
- Install mist on path (optional):
e.g.
sudo mv ./mist /usr/local/bin/mist
sudo chown root: /usr/local/bin/mist
- Enable mist autocompletion on all your sessions (optional):
Bash
- Check bash version
- Install/upgrade bash to v4.0+ if older
- Source completion script
echo 'source <(mist completion bash)' >>~/.bash_profile
Zsh
echo 'source <(mist completion zsh)' >>~/.zshrc
Windows
- Download the latest release with the command:
curl -LO "https://dl.mist.io/cli/v0.7.0/bin/windows/amd64/mist.exe"
- Validate the binary (optional):
Download the mist checksum file:
curl -LO "https://dl.mist.io/cli/v0.7.0/bin/windows/amd64/mist.exe.sha256"
Validate the mist binary against the checksum file:
- Using Command Prompt to manually compare CertUtil's output to the checksum file downloaded:
CertUtil -hashfile mist.exe SHA256
type mist.exe.sha256
- Using PowerShell to automate the verification using the -eq operator to get a True or False result:
$($(CertUtil -hashfile .\mist.exe SHA256)[1] -replace " ", "") -eq $(type .\mist.exe.sha256)
- Add the binary in to your
PATH
.
- Install mist on path (optional):
e.g.
mv mist /usr/local/bin/mist
- Enable mist autocompletion on all your sessions (optional):
Powershell
mist completion powershell
Bash
echo 'source <(mist completion bash)' >>~/.bashrc
Zsh
echo 'source <(mist completion zsh)' >>~/.zshrc
Binaries
Linux
Arch |
SHA256 |
amd64 |
f5ba1aef890a8007bc3fee90f38bcbf44d09b3454c5c17deca591f652caa48ec |
arm64 |
11dd3f0cfbd9c49097510ccdf74f8d8b984a91ae4120fd131d759dcfe95b6059 |
Darwin
Arch |
SHA256 |
amd64 |
68d86d3e508a5409a7fb4e212c2d17197f67cf74bb80fb93cfa122b01c2f2026 |
arm64 |
b84dcaa9d99bc44facefa23e9d71d931fd2a23c4020aa995f6dcc7af6e100f79 |
Windows
Arch |
SHA256 |
amd64 |
3f49d9e3fd6e3e884d99b4da8475e0423b784d2304de3c963a505b88e6433e28 |
Freebsd
Arch |
SHA256 |
amd64 |
1a3be618dc5c3dc07f99a20af079dfdc09cfd8bb7527d52a0f964ca15b0f81be |
arm64 |
75a524574db234fe39e053d2ff1717447cf18b2cd2e257ad5055d65c4dd912e7 |
Openbsd
Arch |
SHA256 |
amd64 |
e390e5a018651fd141774d1dfd32c85f0a977eda5cf87ed41b0a74439bd4f288 |
arm64 |
e6a41ed34360c25f1e312eb9b244148a407725fe518c4340c9b983286ebd65cd |
Netbsd
Arch |
SHA256 |
amd64 |
3bae1d91f56ad1649c0b3b284004967a8cfa3c15972ec4b88f002cc03c273ede |
arm64 |
9496974bfffb20794cda1cf0e22e96c9238b67b356aee5c35b77cddadd6f60c7 |
v0.6.0
- Feature: Introduce version command
Installation
Instructions
Linux
- Download the latest release with the command:
curl -LO "https://dl.mist.io/cli/v0.6.0/bin/linux/amd64/mist"
- Validate the binary (optional):
Download the mist checksum file:
curl -LO "https://dl.mist.io/cli/v0.6.0/bin/linux/amd64/mist.sha256"
Validate the mist binary against the checksum file:
echo "$(<mist.sha256) mist" | sha256sum --check
If valid, the output is:
If the check fails, sha256 exits with nonzero status and prints output similar to:
mist: FAILED
sha256sum: WARNING: 1 computed checksum did NOT match
- Make mist binary executable:
- Install mist on path (optional):
e.g.
mv mist /usr/local/bin/mist
- Enable mist autocompletion on all your sessions (optional):
Bash
echo 'source <(mist completion bash)' >>~/.bashrc
Zsh
echo 'source <(mist completion zsh)' >>~/.zshrc
MacOS
- Download the latest release with the command:
curl -LO "https://dl.mist.io/cli/v0.6.0/bin/darwin/amd64/mist"
- Validate the binary (optional):
Download the mist checksum file:
curl -LO "https://dl.mist.io/cli/v0.6.0/bin/darwin/amd64/mist.sha256"
Validate the mist binary against the checksum file:
echo "$(<mist.sha256) mist" | sha256sum --check
If valid, the output is:
If the check fails, sha256 exits with nonzero status and prints output similar to:
mist: FAILED
sha256sum: WARNING: 1 computed checksum did NOT match
- Make mist binary executable:
- Install mist on path (optional):
e.g.
sudo mv ./mist /usr/local/bin/mist
sudo chown root: /usr/local/bin/mist
- Enable mist autocompletion on all your sessions (optional):
Bash
- Check bash version
- Install/upgrade bash to v4.0+ if older
- Source completion script
echo 'source <(mist completion bash)' >>~/.bash_profile
Zsh
echo 'source <(mist completion zsh)' >>~/.zshrc
Windows
- Download the latest release with the command:
curl -LO "https://dl.mist.io/cli/v0.6.0/bin/windows/amd64/mist.exe"
- Validate the binary (optional):
Download the mist checksum file:
curl -LO "https://dl.mist.io/cli/v0.6.0/bin/windows/amd64/mist.exe.sha256"
Validate the mist binary against the checksum file:
- Using Command Prompt to manually compare CertUtil's output to the checksum file downloaded:
CertUtil -hashfile mist.exe SHA256
type mist.exe.sha256
- Using PowerShell to automate the verification using the -eq operator to get a True or False result:
$($(CertUtil -hashfile .\mist.exe SHA256)[1] -replace " ", "") -eq $(type .\mist.exe.sha256)
- Add the binary in to your
PATH
.
- Install mist on path (optional):
e.g.
mv mist /usr/local/bin/mist
- Enable mist autocompletion on all your sessions (optional):
Powershell
mist completion powershell
Bash
echo 'source <(mist completion bash)' >>~/.bashrc
Zsh
echo 'source <(mist completion zsh)' >>~/.zshrc
Binaries
Linux
Arch |
SHA256 |
amd64 |
46fe0690d7daddb0fd131c0fcbb1021cd956fe32d158c192aaaab44199be92e9 |
arm64 |
e498438e1713842833c3de179c7e4bda823bce5acb4daf12db8039f9dcd6650f |
Darwin
Arch |
SHA256 |
amd64 |
bb7a4c8c8410b1ea7f4ff76a616ab6a9b8e62eb74093c53107dd6cd801051f47 |
arm64 |
600da49294c568e3a036ce91533fbbf11bc7fefc5b522c223632053d32c0856d |
Windows
Arch |
SHA256 |
amd64 |
fc277395f35ab704cc6cc5a6a22431e3a61690cf2f03ce1e372fe51a7ae51a69 |
Freebsd
Arch |
SHA256 |
amd64 |
ff023e4c50eae17f9e8492bfc67e8bb4af10f23b0f1520f87e43e664dcfe4a8f |
arm64 |
0c6c1d3e50fdb0374180e099b59f2ae7a227a80809ac04de73667f3c4a638a12 |
Openbsd
Arch |
SHA256 |
amd64 |
4efc7c5876596122d0d3fd666174d820e82d18d3a46a957e1b598f579569b3b6 |
arm64 |
2425e81f5bb6358742051c0f5cec2e8b0cdc8f8d6fb2abf1155840e060e7bbe6 |
Netbsd
Arch |
SHA256 |
amd64 |
b49ab6b58ee7edcefa85722f12d51f7836c04f7aa1630e8f8eac09314debbb21 |
arm64 |
ba9b73fc8b7fbf5284183c70c5850bae0ee2db62f5072a76e2c41b0f16dabb2e |