Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ResourceManager ¶
type ResourceManager interface { Name() string // This function is being called to install the resource from scratch. // It should create all the required resources in the cluster, and return an error if the installation failed. // This function will only be invoked with `install`, thus it can assume that the resource is not installed in the cluster yet. // It is, however, preferable to make this function idempotent, so it can be invoked multiple times without causing any harm. InstallFromScratch(ctx context.Context) error }
Click to show internal directories.
Click to hide internal directories.