brew install tilt-dev/tap/ctlptl
scoop bucket add tilt-dev https://github.com/tilt-dev/scoop-bucket
scoop install ctlptl
Available on Docker Hub as tiltdev/ctlptl
Contains the most recent version of kind
and ctlptl
for use in CI environments.
Visit the releases page and download the pre-build binaries for your architecture.
For global installation with go use the following command:
go install github.com/tilt-dev/ctlptl/cmd/ctlptl@latest
On macOS:
CTLPTL_VERSION="0.8.37"
curl -fsSL https://github.com/tilt-dev/ctlptl/releases/download/v$CTLPTL_VERSION/ctlptl.$CTLPTL_VERSION.mac.x86_64.tar.gz | sudo tar -xzv -C /usr/local/bin ctlptl
On Linux:
CTLPTL_VERSION="0.8.37"
curl -fsSL https://github.com/tilt-dev/ctlptl/releases/download/v$CTLPTL_VERSION/ctlptl.$CTLPTL_VERSION.linux.x86_64.tar.gz | sudo tar -xzv -C /usr/local/bin ctlptl
On Windows:
$CTLPTL_VERSION = "0.8.37"
Invoke-WebRequest "https://github.com/tilt-dev/ctlptl/releases/download/v$CTLPTL_VERSION/ctlptl.$CTLPTL_VERSION.windows.x86_64.zip" -OutFile "ctlptl.zip"
Expand-Archive "ctlptl.zip" -DestinationPath "ctlptl"
Move-Item -Force -Path "ctlptl\ctlptl.exe" -Destination "$home\bin\ctlptl.exe"