Skip to content

Commit cd43d19

Browse files
Merge pull request #300 from openshift-bot/synchronize-upstream
NO-ISSUE: Synchronize From Upstream Repositories
2 parents 9b4a113 + adeacbe commit cd43d19

File tree

8 files changed

+9
-205
lines changed

8 files changed

+9
-205
lines changed

cmd/operator-controller/main.go

+3
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ var (
8383

8484
type config struct {
8585
metricsAddr string
86+
pprofAddr string
8687
certFile string
8788
keyFile string
8889
enableLeaderElection bool
@@ -131,6 +132,7 @@ func init() {
131132
//create flagset, the collection of flags for this command
132133
flags := operatorControllerCmd.Flags()
133134
flags.StringVar(&cfg.metricsAddr, "metrics-bind-address", "", "The address for the metrics endpoint. Requires tls-cert and tls-key. (Default: ':8443')")
135+
flags.StringVar(&cfg.pprofAddr, "pprof-bind-address", "0", "The address the pprof endpoint binds to. an empty string or 0 disables pprof")
134136
flags.StringVar(&cfg.probeAddr, "health-probe-bind-address", ":8081", "The address the probe endpoint binds to.")
135137
flags.StringVar(&cfg.catalogdCasDir, "catalogd-cas-dir", "", "The directory of TLS certificate authorities to use for verifying HTTPS connections to the Catalogd web service.")
136138
flags.StringVar(&cfg.pullCasDir, "pull-cas-dir", "", "The directory of TLS certificate authorities to use for verifying HTTPS connections to image registries.")
@@ -265,6 +267,7 @@ func run() error {
265267
mgr, err := ctrl.NewManager(ctrl.GetConfigOrDie(), ctrl.Options{
266268
Scheme: scheme.Scheme,
267269
Metrics: metricsServerOptions,
270+
PprofBindAddress: cfg.pprofAddr,
268271
HealthProbeBindAddress: cfg.probeAddr,
269272
LeaderElection: cfg.enableLeaderElection,
270273
LeaderElectionID: "9c4404e7.operatorframework.io",

commitchecker.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
expectedMergeBase: 19eacb0bb654c48b81590abd6a23862f33983268
1+
expectedMergeBase: a2ae8b878035918663e351192a4cd57a0e0c4ac8
22
upstreamBranch: main
33
upstreamOrg: operator-framework
44
upstreamRepo: operator-controller

docs/draft/howto/fetching-catalog-contents.md

-204
This file was deleted.

internal/catalogd/controllers/core/clustercatalog_controller.go

+1
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,7 @@ func (r *ClusterCatalogReconciler) SetupWithManager(mgr ctrl.Manager) error {
152152

153153
return ctrl.NewControllerManagedBy(mgr).
154154
For(&ocv1.ClusterCatalog{}).
155+
Named("catalogd-clustercatalog-controller").
155156
Complete(r)
156157
}
157158

internal/catalogd/controllers/core/pull_secret_controller.go

+1
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ func (r *PullSecretReconciler) Reconcile(ctx context.Context, req ctrl.Request)
6464
func (r *PullSecretReconciler) SetupWithManager(mgr ctrl.Manager) error {
6565
_, err := ctrl.NewControllerManagedBy(mgr).
6666
For(&corev1.Secret{}).
67+
Named("catalogd-pull-secret-controller").
6768
WithEventFilter(newSecretPredicate(r.SecretKey)).
6869
Build(r)
6970

internal/operator-controller/controllers/clustercatalog_controller.go

+1
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ func (r *ClusterCatalogReconciler) Reconcile(ctx context.Context, req ctrl.Reque
9393
// SetupWithManager sets up the controller with the Manager.
9494
func (r *ClusterCatalogReconciler) SetupWithManager(mgr ctrl.Manager) error {
9595
_, err := ctrl.NewControllerManagedBy(mgr).
96+
Named("controller-operator-clustercatalog-controller").
9697
For(&ocv1.ClusterCatalog{}).
9798
Build(r)
9899

internal/operator-controller/controllers/clusterextension_controller.go

+1
Original file line numberDiff line numberDiff line change
@@ -407,6 +407,7 @@ func SetDeprecationStatus(ext *ocv1.ClusterExtension, bundleName string, depreca
407407
func (r *ClusterExtensionReconciler) SetupWithManager(mgr ctrl.Manager) error {
408408
controller, err := ctrl.NewControllerManagedBy(mgr).
409409
For(&ocv1.ClusterExtension{}).
410+
Named("controller-operator-cluster-extension-controller").
410411
Watches(&ocv1.ClusterCatalog{},
411412
crhandler.EnqueueRequestsFromMapFunc(clusterExtensionRequestsForCatalog(mgr.GetClient(), mgr.GetLogger())),
412413
builder.WithPredicates(predicate.Funcs{

internal/operator-controller/controllers/pull_secret_controller.go

+1
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ func (r *PullSecretReconciler) Reconcile(ctx context.Context, req ctrl.Request)
6363
// SetupWithManager sets up the controller with the Manager.
6464
func (r *PullSecretReconciler) SetupWithManager(mgr ctrl.Manager) error {
6565
_, err := ctrl.NewControllerManagedBy(mgr).
66+
Named("controller-operator-pull-secret-controller").
6667
For(&corev1.Secret{}).
6768
WithEventFilter(newSecretPredicate(r.SecretKey)).
6869
Build(r)

0 commit comments

Comments
 (0)