Fixes KUBE_MASTER_IP in contributors/devel/e2e-tests.md.

KUBE_MASTER_IP must not contain prefix "http://".
This commit is contained in:
Yang Guo 2017-04-04 15:45:48 -07:00
parent 712dd6e91b
commit bbfa999547
1 changed files with 1 additions and 1 deletions

View File

@ -416,7 +416,7 @@ at a custom host directly:
```sh
export KUBECONFIG=/path/to/kubeconfig
export KUBE_MASTER_IP="http://127.0.0.1:<PORT>"
export KUBE_MASTER_IP="127.0.0.1:<PORT>"
export KUBE_MASTER=local
go run hack/e2e.go -- -v --test
```