Merge pull request #103982 from ehashman/flaky-serials

Mark failing node serial tests as flaky
This commit is contained in:
Kubernetes Prow Robot 2021-07-29 13:29:18 -07:00 committed by GitHub
commit ec16f247a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -50,7 +50,7 @@ var _ = SIGDescribe("CriticalPod [Serial] [Disruptive] [NodeFeature:CriticalPod]
}
})
ginkgo.It("should be able to create and delete a critical pod", func() {
ginkgo.It("[Flaky] should be able to create and delete a critical pod", func() {
configEnabled, err := isKubeletConfigEnabled(f)
framework.ExpectNoError(err)
if !configEnabled {

View File

@ -119,7 +119,7 @@ func testDevicePlugin(f *framework.Framework, pluginSockDir string) {
}
initialConfig.FeatureGates[string(features.KubeletPodResources)] = true
})
ginkgo.It("Verifies the Kubelet device plugin functionality.", func() {
ginkgo.It("[Flaky] Verifies the Kubelet device plugin functionality.", func() {
ginkgo.By("Wait for node is ready to start with")
e2enode.WaitForNodeToBeReady(f.ClientSet, framework.TestContext.NodeName, 5*time.Minute)
dp := getSampleDevicePluginPod()