Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions control-plane-operator/controllers/openshiftmanager/OWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
approvers:
- csrwng
- bertinatto
- p0lyn0mial
- benluddy

reviewers:
- csrwng
- bertinatto
- p0lyn0mial
- benluddy
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
package openshiftmanager

import (
"fmt"

ctrl "sigs.k8s.io/controller-runtime"
)

// Reconciler is responsible for integration with OpenShiftManager.
// This controller is experimental and will be disabled by default.
//
// For more information on OpenShiftManager, see
// https://github.com/openshift/enhancements/blob/master/dev-guide/multi-operator-manager.md.
type Reconciler struct {
}

func (r *Reconciler) SetupWithManager(mgr ctrl.Manager) error {
return fmt.Errorf("not implemented")
}