Documentation ¶
Index ¶
- Constants
- Variables
- func AddToManager(ctx context.Context, mgr manager.Manager) error
- func AddToManagerWithOptions(ctx context.Context, mgr manager.Manager, opts AddOptions) error
- func NewActuator(mgr manager.Manager, gardenCluster cluster.Cluster) worker.Actuator
- func NewWorkerDelegate(client client.Client, scheme *runtime.Scheme, ...) (genericactuator.WorkerDelegate, error)
- func SanitizeGcpLabel(label string) string
- func SanitizeGcpLabelValue(value string) string
- type AddOptions
Constants ¶
const ( // ResourceGPU is the GPU resource. It should be a non-negative integer. ResourceGPU v1.ResourceName = "gpu" // VolumeTypeScratch is the gcp SCRATCH volume type VolumeTypeScratch = "SCRATCH" )
Variables ¶
var ( // AllowedTypesIops are the volume types for which iops can be configured AllowedTypesIops = []string{persistentDiskExtreme, hyperDiskExtreme, hyperDiskBalanced} // AllowedTypesThroughput are the volume types for which throughput can be configured AllowedTypesThroughput = []string{hyperDiskThroughput, hyperDiskBalanced} )
var ( // DefaultAddOptions are the default AddOptions for AddToManager. DefaultAddOptions = AddOptions{} )
var InitializeCapacity = initializeCapacity
InitializeCapacity is a handle to make the function accessible to the tests.
Functions ¶
func AddToManager ¶
AddToManager adds a controller with the default Options.
func AddToManagerWithOptions ¶
AddToManagerWithOptions adds a controller with the given Options to the given manager. The opts.Reconciler is being set with a newly instantiated actuator.
func NewActuator ¶
NewActuator creates a new Actuator that updates the status of the handled WorkerPoolConfigs.
func NewWorkerDelegate ¶
func NewWorkerDelegate( client client.Client, scheme *runtime.Scheme, seedChartApplier gardener.ChartApplier, serverVersion string, worker *extensionsv1alpha1.Worker, cluster *extensionscontroller.Cluster, ) (genericactuator.WorkerDelegate, error)
NewWorkerDelegate creates a new context for a worker reconciliation.
func SanitizeGcpLabel ¶ added in v1.7.0
SanitizeGcpLabel will sanitize the label base on the gcp label Restrictions
func SanitizeGcpLabelValue ¶ added in v1.7.0
SanitizeGcpLabelValue will sanitize the value base on the gcp label Restrictions
Types ¶
type AddOptions ¶
type AddOptions struct { // GardenCluster is the garden cluster object. GardenCluster cluster.Cluster // Controller are the controller.Options. Controller controller.Options // IgnoreOperationAnnotation specifies whether to ignore the operation annotation or not. IgnoreOperationAnnotation bool // ExtensionClass defines the extension class this extension is responsible for. ExtensionClass extensionsv1alpha1.ExtensionClass }
AddOptions are options to apply when adding the GCP worker controller to the manager.