Commit 291d0cbd authored by Tim Allclair's avatar Tim Allclair

Fix deleted RuntimeClass CRD recovery test flake

parent aab3523e
...@@ -132,7 +132,11 @@ var _ = SIGDescribe("RuntimeClass [Feature:RuntimeClass]", func() { ...@@ -132,7 +132,11 @@ var _ = SIGDescribe("RuntimeClass [Feature:RuntimeClass]", func() {
rcName := createRuntimeClass(f, "valid", "") rcName := createRuntimeClass(f, "valid", "")
pod := createRuntimeClassPod(f, rcName) pod := createRuntimeClassPod(f, rcName)
expectPodSuccess(f, pod)
// Before the pod can be run, the RuntimeClass informer must time out, by which time the Kubelet
// will probably be in a backoff state, so the pod can take a long time to start.
framework.ExpectNoError(framework.WaitForPodSuccessInNamespaceSlow(
f.ClientSet, pod.Name, f.Namespace.Name))
}) })
// TODO(tallclair): Test an actual configured non-default runtimeHandler. // TODO(tallclair): Test an actual configured non-default runtimeHandler.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment