Installing the teectl Command-Line Tool¶
Downloading¶
First, download teectl, a tool that will help you install and operate your cluster, using one of the following links:
teectlfor Linux (Intel) 64 Bitsteectlfor Linux (ARM) v6teectlfor Linux (ARM) v7teectlfor macOS (Intel/Apple) 64 Bitsteectlfor Windows (Intel) 64 Bits
Check the integrity of the downloaded file
Use the sha256 checksums of the binaries:
# Compare this value to the one found in traefikee_checksums.txt
sha256sum ./teectl_v2.7.6_linux_amd64.tar.gz# Compare this value to the one found in traefikee_checksums.txt
shasum -a256 ./teectl_v2.7.6_darwin_amd64.tar.gz# Compare this value to the one found in traefikee_checksums.txt
Get-FileHash teectl_v2.7.6_windows_amd64.zip -Algorithm SHA256Extract the downloaded archive
# Compare this value to the one found in traefikee_checksums.txt
tar -zxvf teectl_v2.7.6_linux_amd64.tar.gz# Compare this value to the one found in traefikee_checksums.txt
tar -zxvf ./teectl_v2.7.6_darwin_amd64.tar.gz# Compare this value to the one found in traefikee_checksums.txt
Expand-Archive teectl_v2.7.6_windows_amd64.zipInstalling¶
Copy the teectl binary to your PATH or add its location to your environment ($PATH or %PATH% depending on your OS)
and make sure it's executable:
# Example with /usr/local/bin
# These command may need sudo rights
cp ./teectl /usr/local/bin/teectl
# Should print "/usr/local/bin/teectl"
command -v teectl# Example with C:\Program Files
Copy-Item "teectl.exe" -Destination "C:\Program Files\teectl.exe"
# Should print "C:\Program Files\teectl.exe"
where teectlVerifying¶
You can now test your installation by executing the command-line teectl without argument,
it should return a simple "usage":
teectlUsage: teectl [flags] <command> [<arguments>]
Use "teectl <command> --help" for help on any command.