Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Provider ¶
type Provider interface { // Precheck returns error when there's wrong with provider configuration. Precheck(ctx context.Context) error // Reconcile ensures all resources used by Provider. Reconcile(ctx context.Context) error // Clean removes all resources created by the provider. Clean(ctx context.Context) error // IsInitialized returns true when kube apiserver is accessible. IsInitialized(ctx context.Context) error // IsReady returns true when the cluster is ready to be used. IsReady(ctx context.Context) error }
Click to show internal directories.
Click to hide internal directories.