Skip to content

Instantly share code, notes, and snippets.

@aojea
Created October 29, 2020 14:16
Show Gist options
  • Select an option

  • Save aojea/b97d030aa7b4825240a0301110c5f379 to your computer and use it in GitHub Desktop.

Select an option

Save aojea/b97d030aa7b4825240a0301110c5f379 to your computer and use it in GitHub Desktop.
Run e2e test in kubernetes
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