Documentation ¶
Index ¶
Constants ¶
View Source
const ( // DefaultInterval is the default interval for retry operations. DefaultInterval = 5 * time.Second // DefaultSevereThreshold is the default threshold until an error reported by another component is treated as 'severe'. DefaultSevereThreshold = 30 * time.Second // DefaultTimeout is the default timeout and defines how long Gardener should wait // for a successful reconciliation of an Extension resource. DefaultTimeout = 3 * time.Minute )
Variables ¶
View Source
var TimeNow = time.Now
TimeNow returns the current time. Exposed for testing.
Functions ¶
This section is empty.
Types ¶
type Extension ¶
type Extension struct { extensionsv1alpha1.Extension // Timeout is the maximum waiting time for the Extension status to report readiness. Timeout time.Duration }
Extension contains information about the desired Extension resources as well as configuration information.
type Interface ¶
type Interface interface { component.DeployMigrateWaiter // DeleteStaleResources deletes unused Extension resources from the shoot namespace in the seed. DeleteStaleResources(context.Context) error // Extensions returns the map of extensions where the key is the type and the value is an Extension structure. Extensions() map[string]Extension }
Interface contains references to an Extension deployer.
type Values ¶
type Values struct { // Namespace is the namespace into which the Extension resources should be deployed. Namespace string // Extensions is the map of extensions where the key is the type and the value is an Extension structure. Extensions map[string]Extension }
Values contains the values used to create an Extension resources.
Click to show internal directories.
Click to hide internal directories.