You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cmd/provider/main.go
+7-3Lines changed: 7 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -47,13 +47,13 @@ func main() {
47
47
app=kingpin.New(filepath.Base(os.Args[0]), "Terraform based Crossplane provider for Scaleway").DefaultEnvars()
48
48
debug=app.Flag("debug", "Run with debug logging.").Short('d').Bool()
49
49
syncInterval=app.Flag("sync", "Sync interval controls how often all resources will be double checked for drift.").Short('s').Default("1h").Duration()
50
-
pollInterval=app.Flag("poll", "Poll interval controls how often an individual resource should be checked for drift.").Default("10m").Duration()
50
+
pollInterval=app.Flag("poll", "Poll interval controls how often an individual resource should be checked for drift.").Default("30m").Duration()
51
51
pollStateMetricInterval=app.Flag("poll-state-metric", "State metric recording interval").Default("5s").Duration()
52
52
leaderElection=app.Flag("leader-election", "Use leader election for the controller manager.").Short('l').Default("false").OverrideDefaultFromEnvar("LEADER_ELECTION").Bool()
maxReconcileRate=app.Flag("max-reconcile-rate", "The global maximum rate per second at which resources may checked for drift from the desired state.").Default("10").Int()
56
+
maxReconcileRate=app.Flag("max-reconcile-rate", "The global maximum rate per second at which resources may checked for drift from the desired state.").Default("2").Int()
57
57
58
58
namespace=app.Flag("registry_namespace.yaml", "Namespace used to set as default scope in default secret store config.").Default("crossplane-system").Envar("POD_NAMESPACE").String()
59
59
enableExternalSecretStores=app.Flag("enable-external-secret-stores", "Enable support for ExternalSecretStores.").Default("false").Envar("ENABLE_EXTERNAL_SECRET_STORES").Bool()
0 commit comments