diff --git a/vendor/github.com/openshift/cluster-api/cmd/manager/main.go b/vendor/github.com/openshift/cluster-api/cmd/manager/main.go index 251e23f676..2e2ef7ae69 100644 --- a/vendor/github.com/openshift/cluster-api/cmd/manager/main.go +++ b/vendor/github.com/openshift/cluster-api/cmd/manager/main.go @@ -50,6 +50,8 @@ func main() { // Create a new Cmd to provide shared dependencies and start components syncPeriod := 10 * time.Minute mgr, err := manager.New(cfg, manager.Options{ + // Disable metrics serving + MetricsBindAddress: "0", SyncPeriod: &syncPeriod, Namespace: *watchNamespace, })