Lab: Tekton

Run the commands below to install tkn the Tekton CLI that we will be using in this lab

curl -LO https://github.com/tektoncd/cli/releases/download/v0.9.0/tkn_0.9.0_Linux_x86_64.tar.gz
mkdir ~/tknbin
tar xvzf tkn_0.9.0_Linux_x86_64.tar.gz -C ~/tknbin tkn
echo 'export PATH=$HOME/tknbin:$PATH' > .bash_profile
source .bash_profile
tkn version

Last updated