Skip to content

Commit

Permalink
Adjust cr and crd deletion timeout to 30mins (#279)
Browse files Browse the repository at this point in the history
* Adjust cr and crd deletion timeout to 1h

* Change to 30mins
  • Loading branch information
RemindD authored May 31, 2024
1 parent bb15a2f commit 41d005b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion k8s/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ func main() {
flag.StringVar(&pollIntervalString, "poll-interval", "10s", "The interval in seconds to poll the target and instance status during reconciliation.")
flag.StringVar(&reconcileIntervalString, "reconcile-interval", "30m", "The interval in seconds to reconcile the target and instance status.")
// Honor OSS changes: use 1m instead of 5m for delete-timeout
flag.StringVar(&deleteTimeOutString, "delete-timeout", "1m", "The timeout in seconds to wait for the target and instance deletion.")
flag.StringVar(&deleteTimeOutString, "delete-timeout", "30m", "The timeout in seconds to wait for the target and instance deletion.")
// Add new settings for delete sync delay
flag.StringVar(&deleteSyncDelayString, "delete-sync-delay", "0s", "The delay in seconds to wait for the status sync back in delete operations.")

Expand Down
2 changes: 1 addition & 1 deletion packages/helm/symphony/files/oss/delete-objects.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/env bash
set -e
TIMEOUT="60s"
TIMEOUT="30m"
SOLUTION_GROUP=solution.symphony
FABRIC_GROUP=fabric.symphony
AI_GROUP=ai.symphony
Expand Down

0 comments on commit 41d005b

Please sign in to comment.