Get the CLI
The Wayfinder CLI allows you to interact with Wayfinder from your terminal and within continuous integration pipelines. All features of Wayfinder can be accessed equally from the UI and CLI.
CLI download links​
See the Release Notes to find the CLI download links for the Wayfinder version and operating system you need. Download links are shown under every supported version.
Get the CLI​
To get the Wayfinder CLI:
- Find the CLI download link for the OS and Wayfinder version you need in the Release Notes.
- Download the CLI binary and place it in a temporary location.
- Make the binary executable.
- As
root
, move the binary to a location defined in your path, for example/usr/local/bin
.
Alternatively, you can copy and run the commands below, replacing v1.0.0
and darwin
with the version and OS you want to download:
VERSION=v1.0.0
OS=darwin
curl -L https://storage.googleapis.com/wayfinder-releases/$VERSION/wf-cli-$OS-amd64 --output /tmp/wf
chmod +x /tmp/wf
sudo mv /tmp/wf /usr/local/bin/wf
In the above example, you:
- Download the
v1.0.0
CLI binary for darwinOS
to a temporary directory. - Make the binary executable.
- Use
root
to move the executable to your/usr/local/bin
directory.
To find help for any command, run wf help command
, for example, wf help create cluster
.