Created
October 29, 2020 14:16
-
-
Save aojea/b97d030aa7b4825240a0301110c5f379 to your computer and use it in GitHub Desktop.
Run e2e test in kubernetes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cd $GOPATH/src/k8s.io/kubernetes | |
| make WHAT="test/e2e/e2e.test vendor/github.com/onsi/ginkgo/ginkgo" | |
| # export KUBECONFIG=${HOME}/kind.conf | |
| export GINKGO_PARALLEL=y | |
| export KUBERNETES_CONFORMANCE_TEST='y' | |
| export KUBE_CONTAINER_RUNTIME=remote | |
| hack/ginkgo-e2e.sh --provider=skeleton \ | |
| --num-nodes=3 \ | |
| --ginkgo.focus="\[Conformance\]|\[sig-network\]" \ | |
| --ginkgo.skip="\[Slow\]|\[Disruptive\]|\[Flaky\]" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment