github.com/tickoalcantara12/micro/v3@v3.0.0-20221007104245-9d75b9bcbab9/scripts/kind-prereqs.sh (about)

     1  # this script installs the prerequisites to get kind install working
     2  mkdir /tmp/cfssl
     3  cd /tmp/cfssl
     4  git clone https://github.com/cloudflare/cfssl.git
     5  pushd cfssl 
     6  make
     7  popd
     8  echo "$(pwd)/cfssl/bin" >> $GITHUB_PATH
     9  # yq is used to manipulate yaml
    10  GO111MODULE=on go get github.com/mikefarah/yq/v3