Skip to content

Commit

Permalink
Add dynamiccontroller flags prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
a-hilaly committed Nov 12, 2024
1 parent 7843f4c commit 327c137
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cmd/controller/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,11 @@ func main() {
flag.IntVar(&resourceGroupConcurrentReconciles, "resource-group-concurrent-reconciles", 1, "The number of resource group reconciles to run in parallel")
flag.IntVar(&dynamicControllerConcurrentReconciles, "dynamic-controller-concurrent-reconciles", 1, "The number of dynamic controller reconciles to run in parallel")
// reconciler parametes
flag.IntVar(&resyncPeriod, "resync-period", 10,
flag.IntVar(&resyncPeriod, "dynamic-controller-default-resync-period", 10,
"interval at which the controller will re list resources even with no changes, in hours")
flag.IntVar(&queueMaxRetries, "queue-max-retries", 20,
flag.IntVar(&queueMaxRetries, "dynamic-controller-default-queue-max-retries", 20,
"maximum number of retries for an item in the queue will be retried before being dropped")
flag.IntVar(&shutdownTimeout, "shutdown-timeout", 60,
flag.IntVar(&shutdownTimeout, "dynamic-controller-default-shutdown-timeout", 60,
"maximum duration to wait for the controller to gracefully shutdown, in seconds")
// log level flags
flag.IntVar(&logLevel, "log-level", 10, "The log level verbosity. 0 is the least verbose, 5 is the most verbose.")
Expand Down

0 comments on commit 327c137

Please sign in to comment.