Skip to main content
logoTetrate Istio SubscriptionVersion: Next

Download

TCA is a single binary which is available for Linux, MacOS and Windows. Follow the instructions below to download and install TCA on your system.

TIS account

You will need to have a valid TIS account to download TCA.

Download and install TCA

Use curl or wget to download the binary, grant permissions to execute and place it somewhere in your $PATH.

ARM64

Replace amd64 with arm64 to download the arm64 binary.

Set environment variables:

export TIS_PASS=<tis-password>
export OS_ARCH=linux-arm64
export VERSION=v1.0.0

To use curl:

mkdir -p ~/.tca/bin
curl -1sLf -O "https://dl.cloudsmith.io/$TIS_PASS/tetrate/tis-containers/raw/names/tca/versions/$OS_ARCH-$VERSION/tca.tar.gz"
tar -xvf tca.tar.gz -C ~/.tca/bin
export PATH=$PATH:~/.tca/bin
rm tca.tar.gz

Or with wget:

mkdir -p ~/.tca/bin
wget -q "https://dl.cloudsmith.io/$TIS_PASS/tetrate/tis-containers/raw/names/tca/versions/$OS_ARCH-$VERSION/tca.tar.gz"
tar -xvf tca.tar.gz -C ~/.tca/bin
export PATH=$PATH:~/.tca/bin
rm tca.tar.gz

Verify the installation

To verify the installation, run the following command:

tca

This command will display the help menu for the TCA CLI, outlining available commands and their descriptions. For detailed instructions on how to utilize the TCA CLI, please refer to the Usage Guide.