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
Currently there are command line flags for metrics and health checks but not for the webhook itself
pflag.StringVar(&metricsAddr, "metrics-addr", ":8080", "The address the metric endpoint binds to.")
flag.StringVar(&probeAddr, "health-probe-addr", ":8081", "The address the probe endpoint binds to.")
It'd be good to add another flag something like:
--webhook-port=9444
Which then would be passed to
mgrOptions:= ctrl.Options{
Port: // ..... value from the flag
}
Related to open-telemetry/opentelemetry-helm-charts#214
Currently there are command line flags for
metrics
andhealth checks
but not for thewebhook
itselfIt'd be good to add another flag something like:
Which then would be passed to
In this line https://github.com/open-telemetry/opentelemetry-operator/blob/main/main.go#L151
The text was updated successfully, but these errors were encountered: