Skip to content

Commit

Permalink
Merge pull request kubernetes#42167 from ncdc/make-kubectl-taint-e2e-…
Browse files Browse the repository at this point in the history
…serial

Make kubectl taint e2e serial
  • Loading branch information
wojtek-t authored Feb 27, 2017
2 parents 7f626cf + 34a0a78 commit 77733c2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/e2e/kubectl.go
Original file line number Diff line number Diff line change
Expand Up @@ -1395,7 +1395,9 @@ var _ = framework.KubeDescribe("Kubectl client", func() {
})
})

framework.KubeDescribe("Kubectl taint", func() {
// This test must run [Serial] because it modifies the node so it doesn't allow pods to execute on
// it, which will affect anything else running in parallel.
framework.KubeDescribe("Kubectl taint [Serial]", func() {
It("should update the taint on a node", func() {
testTaint := v1.Taint{
Key: fmt.Sprintf("kubernetes.io/e2e-taint-key-001-%s", string(uuid.NewUUID())),
Expand Down

0 comments on commit 77733c2

Please sign in to comment.