Bump requeue intervals in defaults and examples

This commit is contained in:
mmontes11
2025-07-17 17:33:54 +02:00
parent f9be0ece5f
commit 4e5eb3face
7 changed files with 11 additions and 11 deletions

View File

@ -12,5 +12,5 @@ spec:
# Delete the resource in the database whenever the CR gets deleted.
# Alternatively, you can specify Skip in order to omit deletion.
cleanupPolicy: Delete
requeueInterval: 30s
retryInterval: 5s
requeueInterval: 10h
retryInterval: 30s

View File

@ -18,5 +18,5 @@ spec:
# Delete the resource in the database whenever the CR gets deleted.
# Alternatively, you can specify Skip in order to omit deletion.
cleanupPolicy: Delete
requeueInterval: 30s
retryInterval: 5s
requeueInterval: 10h
retryInterval: 30s

View File

@ -83,4 +83,4 @@ spec:
metrics:
enabled: true
requeueInterval: 30s
requeueInterval: 1h

View File

@ -54,4 +54,4 @@ spec:
metrics:
enabled: true
requeueInterval: 30s
requeueInterval: 1h

View File

@ -79,4 +79,4 @@ spec:
metrics:
enabled: true
requeueInterval: 30s
requeueInterval: 1h

View File

@ -16,5 +16,5 @@ spec:
# Delete the resource in the database whenever the CR gets deleted.
# Alternatively, you can specify Skip in order to omit deletion.
cleanupPolicy: Delete
requeueInterval: 30s
retryInterval: 5s
requeueInterval: 10h
retryInterval: 30s

View File

@ -63,8 +63,8 @@ func NewSqlReconciler(client ctrlclient.Client, cr *condition.Ready, wr WrappedR
WrappedReconciler: wr,
Finalizer: f,
SqlOptions: SqlOptions{
RequeueInterval: 30 * time.Second,
RequeueMaxOffset: 0,
RequeueInterval: 10 * time.Hour,
RequeueMaxOffset: 1 * time.Hour,
LogSql: false,
},
}