Merge pull request #107986 from wzshiming/promote/shutdown-based-on-pod-priority

Promote graceful shutdown based on pod priority to beta
This commit is contained in:
Kubernetes Prow Robot
2022-03-23 08:06:09 -07:00
committed by GitHub
8 changed files with 260 additions and 5 deletions

View File

@@ -408,6 +408,11 @@ var _ = SIGDescribe("GracefulNodeShutdown [Serial] [NodeFeature:GracefulNodeShut
return nil
}, podStatusUpdateTimeout, pollInterval).Should(gomega.BeNil())
}
ginkgo.By("should have state file")
stateFile := "/var/lib/kubelet/graceful_node_shutdown_state"
_, err = os.Stat(stateFile)
framework.ExpectNoError(err)
})
})
})