Skip to content

Setup For Tutorials

Install Linkerd

For production installation of Knative, refer to the official Linkerd instructions. For exercising Iter8 tutorials, install Linkerd as follows.

  • Clone Iter8 repo

    git clone https://github.com/iter8-tools/iter8.git
    cd iter8
    export ITER8=$(pwd)
    

  • Install Linkerd

    $ITER8/samples/linkerd/quickstart/platformsetup.sh
    

  • Enable Linkerd in the default namespace

    kubectl annotate namespace default linkerd.io/inject=enabled
    

Back to top