| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392 |
- package scaleway
- import (
- "errors"
- "fmt"
- "io"
- "strconv"
- "strings"
- "sync"
- "time"
- "github.com/opencost/opencost/pkg/cloud/models"
- "github.com/opencost/opencost/pkg/cloud/utils"
- "github.com/opencost/opencost/core/pkg/opencost"
- "github.com/opencost/opencost/core/pkg/util"
- "github.com/opencost/opencost/core/pkg/util/json"
- "github.com/opencost/opencost/pkg/clustercache"
- "github.com/opencost/opencost/pkg/env"
- "github.com/opencost/opencost/core/pkg/log"
- "github.com/scaleway/scaleway-sdk-go/api/instance/v1"
- "github.com/scaleway/scaleway-sdk-go/scw"
- )
- const (
- InstanceAPIPricing = "Instance API Pricing"
- )
- type ScalewayPricing struct {
- NodesInfos map[string]*instance.ServerType
- PVCost float64
- }
- type Scaleway struct {
- Clientset clustercache.ClusterCache
- Config models.ProviderConfig
- Pricing map[string]*ScalewayPricing
- ClusterRegion string
- ClusterAccountID string
- DownloadPricingDataLock sync.RWMutex
- }
- // PricingSourceSummary returns the pricing source summary for the provider.
- // The summary represents what was _parsed_ from the pricing source, not
- // everything that was _available_ in the pricing source.
- func (c *Scaleway) PricingSourceSummary() interface{} {
- return c.Pricing
- }
- func (c *Scaleway) DownloadPricingData() error {
- c.DownloadPricingDataLock.Lock()
- defer c.DownloadPricingDataLock.Unlock()
- // TODO wait for an official Pricing API from Scaleway
- // Let's use a static map and an old API
- if len(c.Pricing) != 0 {
- // Already initialized
- return nil
- }
- // PV pricing per AZ
- pvPrice := map[string]float64{
- "fr-par-1": 0.00011,
- "fr-par-2": 0.00011,
- "fr-par-3": 0.00032,
- "nl-ams-1": 0.00008,
- "nl-ams-2": 0.00008,
- "nl-ams-3": 0.00008,
- "pl-waw-1": 0.00011,
- "pl-waw-2": 0.00011,
- "pl-waw-3": 0.00011,
- }
- c.Pricing = make(map[string]*ScalewayPricing)
- // The endpoint we are trying to hit does not have authentication
- client, err := scw.NewClient(scw.WithoutAuth())
- if err != nil {
- return err
- }
- instanceAPI := instance.NewAPI(client)
- for _, zone := range scw.AllZones {
- resp, err := instanceAPI.ListServersTypes(&instance.ListServersTypesRequest{Zone: zone})
- if err != nil {
- log.Errorf("Could not get Scaleway pricing data from instance API in zone %s: %+v", zone, err)
- continue
- }
- c.Pricing[zone.String()] = &ScalewayPricing{
- PVCost: pvPrice[zone.String()],
- NodesInfos: map[string]*instance.ServerType{},
- }
- for name, infos := range resp.Servers {
- c.Pricing[zone.String()].NodesInfos[name] = infos
- }
- }
- return nil
- }
- func (c *Scaleway) AllNodePricing() (interface{}, error) {
- c.DownloadPricingDataLock.RLock()
- defer c.DownloadPricingDataLock.RUnlock()
- return c.Pricing, nil
- }
- type scalewayKey struct {
- Labels map[string]string
- }
- func (k *scalewayKey) Features() string {
- instanceType, _ := util.GetInstanceType(k.Labels)
- zone, _ := util.GetZone(k.Labels)
- return zone + "," + instanceType
- }
- func (k *scalewayKey) GPUCount() int {
- return 0
- }
- func (k *scalewayKey) GPUType() string {
- instanceType, _ := util.GetInstanceType(k.Labels)
- if strings.HasPrefix(instanceType, "RENDER") || strings.HasPrefix(instanceType, "GPU") {
- return instanceType
- }
- return ""
- }
- func (k *scalewayKey) ID() string {
- return ""
- }
- func (c *Scaleway) NodePricing(key models.Key) (*models.Node, models.PricingMetadata, error) {
- c.DownloadPricingDataLock.RLock()
- defer c.DownloadPricingDataLock.RUnlock()
- meta := models.PricingMetadata{}
- // There is only the zone and the instance ID in the providerID, hence we must use the features
- split := strings.Split(key.Features(), ",")
- if pricing, ok := c.Pricing[split[0]]; ok {
- if info, ok := pricing.NodesInfos[split[1]]; ok {
- return &models.Node{
- Cost: fmt.Sprintf("%f", info.HourlyPrice),
- PricingType: models.DefaultPrices,
- VCPU: fmt.Sprintf("%d", info.Ncpus),
- RAM: fmt.Sprintf("%d", info.RAM),
- // This is tricky, as instances can have local volumes or not
- Storage: fmt.Sprintf("%d", info.PerVolumeConstraint.LSSD.MinSize),
- GPU: fmt.Sprintf("%d", *info.Gpu),
- InstanceType: split[1],
- Region: split[0],
- GPUName: key.GPUType(),
- }, meta, nil
- }
- }
- return nil, meta, fmt.Errorf("Unable to find node pricing matching thes features `%s`", key.Features())
- }
- func (c *Scaleway) LoadBalancerPricing() (*models.LoadBalancer, error) {
- // Different LB types, lets take the cheaper for now, we can't get the type
- // without a service specifying the type in the annotations
- return &models.LoadBalancer{
- Cost: 0.014,
- }, nil
- }
- func (c *Scaleway) NetworkPricing() (*models.Network, error) {
- // it's free baby!
- return &models.Network{
- ZoneNetworkEgressCost: 0,
- RegionNetworkEgressCost: 0,
- InternetNetworkEgressCost: 0,
- }, nil
- }
- func (c *Scaleway) GetKey(l map[string]string, n *clustercache.Node) models.Key {
- return &scalewayKey{
- Labels: l,
- }
- }
- type scalewayPVKey struct {
- Labels map[string]string
- StorageClassName string
- StorageClassParameters map[string]string
- Name string
- Zone string
- }
- func (key *scalewayPVKey) ID() string {
- return ""
- }
- func (key *scalewayPVKey) GetStorageClass() string {
- return key.StorageClassName
- }
- func (key *scalewayPVKey) Features() string {
- // Only 1 type of PV for now
- return key.Zone
- }
- func (c *Scaleway) GetPVKey(pv *clustercache.PersistentVolume, parameters map[string]string, defaultRegion string) models.PVKey {
- // the csi volume handle is the form <az>/<volume-id>
- zone := ""
- if pv.Spec.CSI != nil {
- zoneVolID := strings.Split(pv.Spec.CSI.VolumeHandle, "/")
- if len(zoneVolID) > 0 {
- zone = zoneVolID[0]
- }
- }
- return &scalewayPVKey{
- Labels: pv.Labels,
- StorageClassName: pv.Spec.StorageClassName,
- StorageClassParameters: parameters,
- Name: pv.Name,
- Zone: zone,
- }
- }
- func (c *Scaleway) GpuPricing(nodeLabels map[string]string) (string, error) {
- return "", nil
- }
- func (c *Scaleway) PVPricing(pvk models.PVKey) (*models.PV, error) {
- c.DownloadPricingDataLock.RLock()
- defer c.DownloadPricingDataLock.RUnlock()
- pricing, ok := c.Pricing[pvk.Features()]
- if !ok {
- log.Debugf("Persistent Volume pricing not found for %s: %s", pvk.GetStorageClass(), pvk.Features())
- return &models.PV{}, nil
- }
- return &models.PV{
- Cost: fmt.Sprintf("%f", pricing.PVCost),
- Class: pvk.GetStorageClass(),
- }, nil
- }
- func (c *Scaleway) ServiceAccountStatus() *models.ServiceAccountStatus {
- return &models.ServiceAccountStatus{
- Checks: []*models.ServiceAccountCheck{},
- }
- }
- func (*Scaleway) ClusterManagementPricing() (string, float64, error) {
- return "", 0.0, nil
- }
- func (c *Scaleway) CombinedDiscountForNode(instanceType string, isPreemptible bool, defaultDiscount, negotiatedDiscount float64) float64 {
- return 1.0 - ((1.0 - defaultDiscount) * (1.0 - negotiatedDiscount))
- }
- func (c *Scaleway) Regions() []string {
- regionOverrides := env.GetRegionOverrideList()
- if len(regionOverrides) > 0 {
- log.Debugf("Overriding Scaleway regions with configured region list: %+v", regionOverrides)
- return regionOverrides
- }
- // These are zones but hey, its 2022
- zones := []string{}
- for _, zone := range scw.AllZones {
- zones = append(zones, zone.String())
- }
- return zones
- }
- func (*Scaleway) ApplyReservedInstancePricing(map[string]*models.Node) {}
- func (*Scaleway) GetAddresses() ([]byte, error) {
- return nil, nil
- }
- func (*Scaleway) GetDisks() ([]byte, error) {
- return nil, nil
- }
- func (*Scaleway) GetOrphanedResources() ([]models.OrphanedResource, error) {
- return nil, errors.New("not implemented")
- }
- func (scw *Scaleway) ClusterInfo() (map[string]string, error) {
- remoteEnabled := env.IsRemoteEnabled()
- m := make(map[string]string)
- m["name"] = "Scaleway Cluster #1"
- c, err := scw.GetConfig()
- if err != nil {
- return nil, err
- }
- if c.ClusterName != "" {
- m["name"] = c.ClusterName
- }
- m["provider"] = opencost.ScalewayProvider
- m["region"] = scw.ClusterRegion
- m["account"] = scw.ClusterAccountID
- m["remoteReadEnabled"] = strconv.FormatBool(remoteEnabled)
- m["id"] = env.GetClusterID()
- return m, nil
- }
- func (c *Scaleway) UpdateConfigFromConfigMap(a map[string]string) (*models.CustomPricing, error) {
- return c.Config.UpdateFromMap(a)
- }
- func (c *Scaleway) UpdateConfig(r io.Reader, updateType string) (*models.CustomPricing, error) {
- defer c.DownloadPricingData()
- return c.Config.Update(func(c *models.CustomPricing) error {
- a := make(map[string]interface{})
- err := json.NewDecoder(r).Decode(&a)
- if err != nil {
- return err
- }
- for k, v := range a {
- kUpper := utils.ToTitle.String(k) // Just so we consistently supply / receive the same values, uppercase the first letter.
- vstr, ok := v.(string)
- if ok {
- err := models.SetCustomPricingField(c, kUpper, vstr)
- if err != nil {
- return fmt.Errorf("error setting custom pricing field: %w", err)
- }
- } else {
- return fmt.Errorf("type error while updating config for %s", kUpper)
- }
- }
- if env.IsRemoteEnabled() {
- err := utils.UpdateClusterMeta(env.GetClusterID(), c.ClusterName)
- if err != nil {
- return err
- }
- }
- return nil
- })
- }
- func (scw *Scaleway) GetConfig() (*models.CustomPricing, error) {
- c, err := scw.Config.GetCustomPricingData()
- if err != nil {
- return nil, err
- }
- if c.Discount == "" {
- c.Discount = "0%"
- }
- if c.NegotiatedDiscount == "" {
- c.NegotiatedDiscount = "0%"
- }
- if c.CurrencyCode == "" {
- c.CurrencyCode = "EUR"
- }
- return c, nil
- }
- func (*Scaleway) GetLocalStorageQuery(window, offset time.Duration, rate bool, used bool) string {
- return ""
- }
- func (scw *Scaleway) GetManagementPlatform() (string, error) {
- nodes := scw.Clientset.GetAllNodes()
- if len(nodes) > 0 {
- n := nodes[0]
- if _, ok := n.Labels["k8s.scaleway.com/kapsule"]; ok {
- return "kapsule", nil
- }
- if _, ok := n.Labels["kops.k8s.io/instancegroup"]; ok {
- return "kops", nil
- }
- }
- return "", nil
- }
- func (c *Scaleway) PricingSourceStatus() map[string]*models.PricingSource {
- return map[string]*models.PricingSource{
- InstanceAPIPricing: {
- Name: InstanceAPIPricing,
- Enabled: true,
- Available: true,
- },
- }
- }
|