Skip to content

Commit

Permalink
Rename flags
Browse files Browse the repository at this point in the history
  • Loading branch information
Ricardo Osorio committed Oct 18, 2023
1 parent cc07a73 commit 018cbf7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cmd/provider/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,9 @@ func main() {
maxReconcileRate = app.Flag("max-reconcile-rate", "The global maximum rate per second at which resources may checked for drift from the desired state.").Default("1000").Int()
reconcileTimeout = app.Flag("reconcile-timeout", "Object reconciliation timeout").Short('t').Default("3s").Duration()
creationGracePeriod = app.Flag("creation-grace-period", "Duration to wait for the external API to report that a newly created external resource exists.").Default("10s").Duration()
metricsExportTimeout = app.Flag("metrics-export-timeout", "Timeout when exporting metrics").Default("2s").Duration()
metricsExportInterval = app.Flag("metrics-export-interval", "Interval at which metrics are exported").Default("5s").Duration()
metricsExportAddress = app.Flag("metrics-export-address", "Address of otel collector").Default("opentelemetry-collector.opentelemetry:4317").String()
metricsExportTimeout = app.Flag("otel-metrics-export-timeout", "Timeout when exporting metrics").Default("2s").Duration()
metricsExportInterval = app.Flag("otel-metrics-export-interval", "Interval at which metrics are exported").Default("5s").Duration()
metricsExportAddress = app.Flag("otel-metrics-export-address", "Address of otel collector").Default("opentelemetry-collector.opentelemetry:4317").String()

kubeClientRate = app.Flag("kube-client-rate", "The global maximum rate per second at how many requests the client can do.").Default("1000").Int()

Expand Down

0 comments on commit 018cbf7

Please sign in to comment.