Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( InstanceTypeOfferingAvailable = opmetrics.NewPrometheusGauge( crmetrics.Registry, prometheus.GaugeOpts{ Namespace: metrics.Namespace, Subsystem: cloudProviderSubsystem, Name: "instance_type_offering_available", Help: "Instance type offering availability, based on instance type, capacity type, and zone", }, []string{ instanceTypeLabel, capacityTypeLabel, zoneLabel, }, ) InstanceTypeOfferingPriceEstimate = opmetrics.NewPrometheusGauge( crmetrics.Registry, prometheus.GaugeOpts{ Namespace: metrics.Namespace, Subsystem: cloudProviderSubsystem, Name: "instance_type_offering_price_estimate", Help: "Instance type offering estimated hourly price used when making informed decisions on node cost calculation, based on instance type, capacity type, and zone.", }, []string{ instanceTypeLabel, capacityTypeLabel, zoneLabel, }, ) )
Functions ¶
This section is empty.
Types ¶
type DefaultProvider ¶
type DefaultProvider struct {
// contains filtered or unexported fields
}
func NewDefaultProvider ¶
func NewDefaultProvider( pricingProvider pricing.Provider, capacityReservationProvider capacityreservation.Provider, unavailableOfferingsCache *awscache.UnavailableOfferings, offeringCache *cache.Cache, ) *DefaultProvider
func (*DefaultProvider) InjectOfferings ¶
func (p *DefaultProvider) InjectOfferings( ctx context.Context, instanceTypes []*cloudprovider.InstanceType, nodeClass *v1.EC2NodeClass, allZones sets.Set[string], ) []*cloudprovider.InstanceType
type Provider ¶
type Provider interface {
InjectOfferings(context.Context, []*cloudprovider.InstanceType, *v1.EC2NodeClass, []string) []*cloudprovider.InstanceType
}
Click to show internal directories.
Click to hide internal directories.