Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Operand ¶
type Operand interface { // WatchTypes returns a slice of namespaced resources, that the operator should watch. WatchTypes() []client.Object // WatchClusterTypes returns a slice of cluster resources, that the operator should watch. WatchClusterTypes() []client.Object // RequiredCrds returns names of CRDs, that need to be installed for the operand to work. RequiredCrds() []string // Reconcile creates and updates resources. Reconcile(*common.Request) ([]common.ReconcileResult, error) // Cleanup removes any created cluster resources. // They don't use owner references, so the garbage collector will not remove them. Cleanup(*common.Request) ([]common.CleanupResult, error) // Name returns the name of the operand Name() string }
Click to show internal directories.
Click to hide internal directories.