Mark failing node serial tests as flaky

Tracked in:
- https://github.com/kubernetes/kubernetes/issues/103690
- https://github.com/kubernetes/kubernetes/issues/103691
This commit is contained in:
Elana Hashman 2021-07-28 10:39:30 -07:00
parent dadecb2c89
commit 59a7cc12c9
No known key found for this signature in database
GPG Key ID: D37F7B2A20B48FA0
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()