From 1f092dc15d7f7ec008d1c0f27b7d2697ee4cd375 Mon Sep 17 00:00:00 2001 From: Andrew Sauber Date: Wed, 17 Apr 2019 11:16:31 -0400 Subject: [PATCH] inform users about ssh-agent when running e2e tests --- e2e/README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/e2e/README.md b/e2e/README.md index 76dc9452..e77ab5d7 100644 --- a/e2e/README.md +++ b/e2e/README.md @@ -39,6 +39,12 @@ cd $GOPATH/src/github.com/linode/linode-cloud-controller-manager make build ``` +By default the tests use $HOME/.ssh/id\_rsa.pub as the public key used to provision the cluster, so it needs to be added to your agent. + +``` +ssh-add $HOME/.ssh/id_rsa +``` + Come back here and run the tests ```