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
app=kingpin.New(filepath.Base(os.Args[0]), "Template support for Crossplane.").DefaultEnvars()
55
-
debug=app.Flag("debug", "Run with debug logging.").Short('d').Bool()
56
-
syncInterval=app.Flag("sync", "Controller manager sync period such as 300ms, 1.5h, or 2h45m").Short('s').Default("1h").Duration()
57
-
pollInterval=app.Flag("poll", "Poll interval controls how often an individual resource should be checked for drift.").Default("10m").Duration()
58
-
pollJitterPercentage=app.Flag("poll-jitter-percentage", "Percentage of jitter to apply to poll interval. It cannot be negative, and must be less than 100.").Default("10").Uint()
59
-
leaderElection=app.Flag("leader-election", "Use leader election for the controller manager.").Short('l').Default("false").Envar("LEADER_ELECTION").Bool()
60
-
maxReconcileRate=app.Flag("max-reconcile-rate", "The number of concurrent reconciliations that may be running at one time.").Default("100").Int()
61
-
sanitizeSecrets=app.Flag("sanitize-secrets", "when enabled, redacts Secret data from Object status").Default("false").Envar("SANITIZE_SECRETS").Bool()
57
+
app=kingpin.New(filepath.Base(os.Args[0]), "Template support for Crossplane.").DefaultEnvars()
58
+
debug=app.Flag("debug", "Run with debug logging.").Short('d').Bool()
59
+
syncInterval=app.Flag("sync", "Controller manager sync period such as 300ms, 1.5h, or 2h45m").Short('s').Default("1h").Duration()
60
+
pollInterval=app.Flag("poll", "Poll interval controls how often an individual resource should be checked for drift.").Default("10m").Duration()
61
+
pollStateMetricInterval=app.Flag("poll-state-metric", "State metric recording interval").Default("5s").Duration()
62
+
pollJitterPercentage=app.Flag("poll-jitter-percentage", "Percentage of jitter to apply to poll interval. It cannot be negative, and must be less than 100.").Default("10").Uint()
63
+
leaderElection=app.Flag("leader-election", "Use leader election for the controller manager.").Short('l').Default("false").Envar("LEADER_ELECTION").Bool()
64
+
maxReconcileRate=app.Flag("max-reconcile-rate", "The number of concurrent reconciliations that may be running at one time.").Default("100").Int()
65
+
sanitizeSecrets=app.Flag("sanitize-secrets", "when enabled, redacts Secret data from Object status").Default("false").Envar("SANITIZE_SECRETS").Bool()
62
66
63
67
enableManagementPolicies=app.Flag("enable-management-policies", "Enable support for Management Policies.").Default("true").Envar("ENABLE_MANAGEMENT_POLICIES").Bool()
64
68
enableWatches=app.Flag("enable-watches", "Enable support for watching resources.").Default("false").Envar("ENABLE_WATCHES").Bool()
0 commit comments