Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[TPU Provisioner] Bump node pool deletion check interval #269

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tpu-provisioner/internal/controller/deletion_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import (
// has passed twice, the node pool can be safely deleted. This second
// check is ensure the node pool is not prematurely deleted, in the case
// where a JobSet is restarted, but no pods have been created yet.
var nodePoolDeletionCheckInterval = 4 * time.Second
var nodePoolDeletionCheckInterval = 30 * time.Second

// DeletionReconciler watches Pods and Nodes and deletes Node Pools.
type DeletionReconciler struct {
Expand Down