Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewFromWatches ¶
func NewFromWatches(path string) (map[schema.GroupVersionKind]Runner, error)
NewFromWatches reads the operator's config file at the provided path.
Types ¶
type Finalizer ¶
type Finalizer struct { Name string `yaml:"name"` Playbook string `yaml:"playbook"` Role string `yaml:"role"` Vars map[string]interface{} `yaml:"vars"` }
Finalizer - Expose finalizer to be used by a user.
type Runner ¶
type Runner interface { Run(*unstructured.Unstructured, string) (chan eventapi.JobEvent, error) GetFinalizer() (string, bool) }
Runner - a runnable that should take the parameters and name and namespace and run the correct code.
func NewForPlaybook ¶
NewForPlaybook returns a new Runner based on the path to an ansible playbook.
func NewForRole ¶
NewForRole returns a new Runner based on the path to an ansible role.
Click to show internal directories.
Click to hide internal directories.