cloudpakforapplications-appmod
workshop-07-27-2020
workshop-07-27-2020
  • Introduction
  • Setup
    • Access IBM Skills Network
    • Access your OpenShift Cluster
  • Session 1
    • Lab: Docker101
      • Lab 1
      • Lab 2
    • Lab: Kubernetes 101
      • Lab 1 - Deploy Application
      • Lab 2 - Scale Application
      • Lab 3 - Multi-tier Application
  • Session 2
    • Demo: Helm 101
      • Lab 1 - Deploy Application
      • Lab 2 - Update Application
      • Lab 3 - Revisions
      • Lab 4 - Helm Repositories
    • Extra Credit: Istio 101
      • Setup Istio
      • Lab 1 - Installing Istio
      • Lab 2 - Deploying Guestbook Application
      • Lab 3 - Expose the Service Mesh with Istio Ingress Gateway
      • Lab 4 - Perform Traffic Management
  • Extra Credit: Kubernetes Extensions
  • Lab: Openshift S2I and Templates
  • Session 3
    • Lab: Tekton
      • Lab: Tekton on OpenShift
  • Session 4
    • Lab: Dev Files
  • Resources
    • IBM Developer
Powered by GitBook
On this page

Was this helpful?

  1. Session 3

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
PreviousLab: Openshift S2I and TemplatesNextLab: Tekton on OpenShift

Last updated 4 years ago

Was this helpful?