| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466 |
- package aws
- import (
- "bytes"
- "compress/gzip"
- "context"
- "encoding/csv"
- "errors"
- "fmt"
- "io"
- "net/http"
- "os"
- "regexp"
- "strconv"
- "strings"
- "sync"
- "time"
- "github.com/aws/smithy-go"
- "github.com/opencost/opencost/pkg/cloud/models"
- "github.com/opencost/opencost/pkg/cloud/utils"
- "github.com/opencost/opencost/core/pkg/env"
- "github.com/opencost/opencost/core/pkg/log"
- "github.com/opencost/opencost/core/pkg/opencost"
- "github.com/opencost/opencost/core/pkg/util"
- "github.com/opencost/opencost/core/pkg/util/fileutil"
- "github.com/opencost/opencost/core/pkg/util/json"
- "github.com/opencost/opencost/core/pkg/util/timeutil"
- "github.com/opencost/opencost/pkg/clustercache"
- ocenv "github.com/opencost/opencost/pkg/env"
- errs "github.com/opencost/opencost/pkg/errors"
- awsSDK "github.com/aws/aws-sdk-go-v2/aws"
- "github.com/aws/aws-sdk-go-v2/config"
- "github.com/aws/aws-sdk-go-v2/credentials/stscreds"
- "github.com/aws/aws-sdk-go-v2/feature/s3/manager"
- "github.com/aws/aws-sdk-go-v2/service/athena"
- athenaTypes "github.com/aws/aws-sdk-go-v2/service/athena/types"
- "github.com/aws/aws-sdk-go-v2/service/ec2"
- ec2Types "github.com/aws/aws-sdk-go-v2/service/ec2/types"
- "github.com/aws/aws-sdk-go-v2/service/s3"
- "github.com/aws/aws-sdk-go-v2/service/sts"
- "github.com/jszwec/csvutil"
- v1 "k8s.io/api/core/v1"
- )
- const (
- supportedSpotFeedVersion = "1"
- SpotInfoUpdateType = "spotinfo"
- AthenaInfoUpdateType = "athenainfo"
- PreemptibleType = "preemptible"
- APIPricingSource = "Public API"
- SpotPricingSource = "Spot Data Feed"
- ReservedInstancePricingSource = "Savings Plan, Reserved Instance, and Out-Of-Cluster"
- InUseState = "in-use"
- AttachedState = "attached"
- AWSHourlyPublicIPCost = 0.005
- EKSCapacityTypeLabel = "eks.amazonaws.com/capacityType"
- EKSCapacitySpotTypeValue = "SPOT"
- )
- var (
- // It's of the form aws:///us-east-2a/i-0fea4fd46592d050b and we want i-0fea4fd46592d050b, if it exists
- provIdRx = regexp.MustCompile("aws:///([^/]+)/([^/]+)")
- usageTypeRegx = regexp.MustCompile(".*(-|^)(EBS.+)")
- versionRx = regexp.MustCompile(`^#Version: (\\d+)\\.\\d+$`)
- regionRx = regexp.MustCompile("([a-z]+-[a-z]+-[0-9])")
- // StorageClassProvisionerDefaults specifies the default storage class types depending upon the provisioner
- StorageClassProvisionerDefaults = map[string]string{
- "kubernetes.io/aws-ebs": "gp2",
- "ebs.csi.aws.com": "gp3",
- // TODO: add efs provisioner
- }
- )
- func (aws *AWS) PricingSourceStatus() map[string]*models.PricingSource {
- sources := make(map[string]*models.PricingSource)
- sps := &models.PricingSource{
- Name: SpotPricingSource,
- Enabled: true,
- }
- if !aws.SpotRefreshEnabled() {
- sps.Available = false
- sps.Error = "Spot instances not set up"
- sps.Enabled = false
- } else {
- sps.Error = ""
- if aws.SpotPricingError != nil {
- sps.Error = aws.SpotPricingError.Error()
- }
- if sps.Error != "" {
- sps.Available = false
- } else if len(aws.SpotPricingByInstanceID) > 0 {
- sps.Available = true
- } else {
- sps.Error = "No spot instances detected"
- }
- }
- sources[SpotPricingSource] = sps
- rps := &models.PricingSource{
- Name: ReservedInstancePricingSource,
- Enabled: true,
- }
- rps.Error = ""
- if aws.RIPricingError != nil {
- rps.Error = aws.RIPricingError.Error()
- }
- if rps.Error != "" {
- rps.Available = false
- } else {
- rps.Available = true
- }
- sources[ReservedInstancePricingSource] = rps
- return sources
- }
- // SpotRefreshDuration represents how much time must pass before we refresh
- const SpotRefreshDuration = 15 * time.Minute
- var awsRegions = []string{
- "us-east-2",
- "us-east-1",
- "us-west-1",
- "us-west-2",
- "ap-east-1",
- "ap-south-1",
- "ap-northeast-3",
- "ap-northeast-2",
- "ap-southeast-1",
- "ap-southeast-2",
- "ap-northeast-1",
- "ap-southeast-3",
- "ca-central-1",
- "cn-north-1",
- "cn-northwest-1",
- "eu-central-1",
- "eu-west-1",
- "eu-west-2",
- "eu-west-3",
- "eu-north-1",
- "eu-south-1",
- "me-south-1",
- "sa-east-1",
- "af-south-1",
- "us-gov-east-1",
- "us-gov-west-1",
- "me-central-1",
- }
- // AWS represents an Amazon Provider
- type AWS struct {
- Pricing map[string]*AWSProductTerms
- SpotPricingByInstanceID map[string]*spotInfo
- SpotPricingUpdatedAt *time.Time
- SpotRefreshRunning bool
- SpotPricingLock sync.RWMutex
- SpotPricingError error
- RIPricingByInstanceID map[string]*RIData
- RIPricingError error
- RIDataRunning bool
- RIDataLock sync.RWMutex
- SavingsPlanDataByInstanceID map[string]*SavingsPlanData
- SavingsPlanDataRunning bool
- SavingsPlanDataLock sync.RWMutex
- ValidPricingKeys map[string]bool
- Clientset clustercache.ClusterCache
- BaseCPUPrice string
- BaseRAMPrice string
- BaseGPUPrice string
- BaseSpotCPUPrice string
- BaseSpotRAMPrice string
- BaseSpotGPUPrice string
- SpotLabelName string
- SpotLabelValue string
- SpotDataRegion string
- SpotDataBucket string
- SpotDataPrefix string
- ProjectID string
- DownloadPricingDataLock sync.RWMutex
- Config models.ProviderConfig
- ServiceAccountChecks *models.ServiceAccountChecks
- clusterManagementPrice float64
- ClusterRegion string
- ClusterAccountID string
- clusterProvisioner string
- }
- // AWSAccessKey holds AWS credentials and fulfils the awsV2.CredentialsProvider interface
- // Deprecated: v1.104 Use AccessKey instead
- type AWSAccessKey struct {
- AccessKeyID string `json:"aws_access_key_id"`
- SecretAccessKey string `json:"aws_secret_access_key"`
- }
- // Retrieve returns a set of awsV2 credentials using the AWSAccessKey's key and secret.
- // This fulfils the awsV2.CredentialsProvider interface contract.
- func (accessKey AWSAccessKey) Retrieve(ctx context.Context) (awsSDK.Credentials, error) {
- return awsSDK.Credentials{
- AccessKeyID: accessKey.AccessKeyID,
- SecretAccessKey: accessKey.SecretAccessKey,
- }, nil
- }
- // CreateConfig creates an AWS SDK V2 Config for the credentials that it contains for the provided region
- func (accessKey AWSAccessKey) CreateConfig(region string) (awsSDK.Config, error) {
- var cfg awsSDK.Config
- var err error
- // If accessKey values have not been provided, attempt to load cfg from service key annotations
- if accessKey.AccessKeyID == "" && accessKey.SecretAccessKey == "" {
- cfg, err = config.LoadDefaultConfig(context.TODO(), config.WithRegion(region))
- if err != nil {
- return cfg, fmt.Errorf("failed to initialize AWS SDK config for region from annotation %s: %s", region, err)
- }
- } else {
- // The AWS SDK v2 requires an object fulfilling the CredentialsProvider interface, which cloud.AWSAccessKey does
- cfg, err = config.LoadDefaultConfig(context.TODO(), config.WithCredentialsProvider(accessKey), config.WithRegion(region))
- if err != nil {
- return cfg, fmt.Errorf("failed to initialize AWS SDK config for region %s: %s", region, err)
- }
- }
- return cfg, nil
- }
- // AWSPricing maps a k8s node to an AWS Pricing "product"
- type AWSPricing struct {
- Products map[string]*AWSProduct `json:"products"`
- Terms AWSPricingTerms `json:"terms"`
- }
- // AWSProduct represents a purchased SKU
- type AWSProduct struct {
- Sku string `json:"sku"`
- Attributes AWSProductAttributes `json:"attributes"`
- }
- // AWSProductAttributes represents metadata about the product used to map to a node.
- type AWSProductAttributes struct {
- Location string `json:"location"`
- RegionCode string `json:"regionCode"`
- Operation string `json:"operation"`
- InstanceType string `json:"instanceType"`
- Memory string `json:"memory"`
- Storage string `json:"storage"`
- VCpu string `json:"vcpu"`
- UsageType string `json:"usagetype"`
- OperatingSystem string `json:"operatingSystem"`
- PreInstalledSw string `json:"preInstalledSw"`
- InstanceFamily string `json:"instanceFamily"`
- CapacityStatus string `json:"capacitystatus"`
- GPU string `json:"gpu"` // GPU represents the number of GPU on the instance
- MarketOption string `json:"marketOption"`
- }
- // AWSPricingTerms are how you pay for the node: OnDemand, Reserved, or (TODO) Spot
- type AWSPricingTerms struct {
- OnDemand map[string]map[string]*AWSOfferTerm `json:"OnDemand"`
- Reserved map[string]map[string]*AWSOfferTerm `json:"Reserved"`
- }
- // AWSOfferTerm is a sku extension used to pay for the node.
- type AWSOfferTerm struct {
- Sku string `json:"sku"`
- OfferTermCode string `json:"offerTermCode"`
- PriceDimensions map[string]*AWSRateCode `json:"priceDimensions"`
- }
- func (ot *AWSOfferTerm) String() string {
- var strs []string
- for k, rc := range ot.PriceDimensions {
- strs = append(strs, fmt.Sprintf("%s:%s", k, rc.String()))
- }
- return fmt.Sprintf("%s:%s", ot.Sku, strings.Join(strs, ","))
- }
- // AWSRateCode encodes data about the price of a product
- type AWSRateCode struct {
- Unit string `json:"unit"`
- PricePerUnit AWSCurrencyCode `json:"pricePerUnit"`
- }
- func (rc *AWSRateCode) String() string {
- return fmt.Sprintf("{unit: %s, pricePerUnit: %v", rc.Unit, rc.PricePerUnit)
- }
- // AWSCurrencyCode is the localized currency. (TODO: support non-USD)
- type AWSCurrencyCode struct {
- USD string `json:"USD,omitempty"`
- CNY string `json:"CNY,omitempty"`
- }
- // AWSProductTerms represents the full terms of the product
- type AWSProductTerms struct {
- Sku string `json:"sku"`
- OnDemand *AWSOfferTerm `json:"OnDemand"`
- Reserved *AWSOfferTerm `json:"Reserved"`
- Memory string `json:"memory"`
- Storage string `json:"storage"`
- VCpu string `json:"vcpu"`
- GPU string `json:"gpu"` // GPU represents the number of GPU on the instance
- PV *models.PV `json:"pv"`
- LoadBalancer *models.LoadBalancer `json:"load_balancer"`
- }
- // ClusterIdEnvVar is the environment variable in which one can manually set the ClusterId
- const ClusterIdEnvVar = "AWS_CLUSTER_ID"
- // OnDemandRateCodes is are sets of identifiers for offerTermCodes matching 'On Demand' rates
- var OnDemandRateCodes = map[string]struct{}{
- "JRTCKXETXF": {},
- }
- var OnDemandRateCodesCn = map[string]struct{}{
- "99YE2YK9UR": {},
- "5Y9WH78GDR": {},
- "KW44MY7SZN": {},
- }
- // HourlyRateCode is appended to a node sku
- const HourlyRateCode = "6YS6EN2CT7"
- const HourlyRateCodeCn = "Q7UJUT2CE6"
- // volTypes are used to map between AWS UsageTypes and
- // EBS volume types, as they would appear in K8s storage class
- // name and the EC2 API.
- var volTypes = map[string]string{
- "EBS:VolumeUsage.gp2": "gp2",
- "EBS:VolumeUsage.gp3": "gp3",
- "EBS:VolumeUsage": "standard",
- "EBS:VolumeUsage.sc1": "sc1",
- "EBS:VolumeP-IOPS.piops": "io1",
- "EBS:VolumeUsage.st1": "st1",
- "EBS:VolumeUsage.piops": "io1",
- "gp2": "EBS:VolumeUsage.gp2",
- "gp3": "EBS:VolumeUsage.gp3",
- "standard": "EBS:VolumeUsage",
- "sc1": "EBS:VolumeUsage.sc1",
- "io1": "EBS:VolumeUsage.piops",
- "st1": "EBS:VolumeUsage.st1",
- }
- var loadedAWSSecret bool = false
- var awsSecret *AWSAccessKey = nil
- func (aws *AWS) GetLocalStorageQuery(window, offset time.Duration, rate bool, used bool) string {
- return ""
- }
- // KubeAttrConversion maps the k8s labels for region to an AWS key
- func (aws *AWS) KubeAttrConversion(region, instanceType, operatingSystem string) string {
- operatingSystem = strings.ToLower(operatingSystem)
- return region + "," + instanceType + "," + operatingSystem
- }
- // AwsSpotFeedInfo contains configuration for spot feed integration
- type AwsSpotFeedInfo struct {
- BucketName string `json:"bucketName"`
- Prefix string `json:"prefix"`
- Region string `json:"region"`
- AccountID string `json:"projectID"`
- ServiceKeyName string `json:"serviceKeyName"`
- ServiceKeySecret string `json:"serviceKeySecret"`
- SpotLabel string `json:"spotLabel"`
- SpotLabelValue string `json:"spotLabelValue"`
- }
- // AwsAthenaInfo contains configuration for CUR integration
- // Deprecated: v1.104 Use AthenaConfiguration instead
- type AwsAthenaInfo struct {
- AthenaBucketName string `json:"athenaBucketName"`
- AthenaRegion string `json:"athenaRegion"`
- AthenaDatabase string `json:"athenaDatabase"`
- AthenaCatalog string `json:"athenaCatalog"`
- AthenaTable string `json:"athenaTable"`
- AthenaWorkgroup string `json:"athenaWorkgroup"`
- ServiceKeyName string `json:"serviceKeyName"`
- ServiceKeySecret string `json:"serviceKeySecret"`
- AccountID string `json:"projectID"`
- MasterPayerARN string `json:"masterPayerARN"`
- }
- // IsEmpty returns true if all fields in config are empty, false if not.
- func (aai *AwsAthenaInfo) IsEmpty() bool {
- return aai.AthenaBucketName == "" &&
- aai.AthenaRegion == "" &&
- aai.AthenaDatabase == "" &&
- aai.AthenaCatalog == "" &&
- aai.AthenaTable == "" &&
- aai.AthenaWorkgroup == "" &&
- aai.ServiceKeyName == "" &&
- aai.ServiceKeySecret == "" &&
- aai.AccountID == "" &&
- aai.MasterPayerARN == ""
- }
- // CreateConfig creates an AWS SDK V2 Config for the credentials that it contains
- func (aai *AwsAthenaInfo) CreateConfig() (awsSDK.Config, error) {
- keyProvider := AWSAccessKey{AccessKeyID: aai.ServiceKeyName, SecretAccessKey: aai.ServiceKeySecret}
- cfg, err := keyProvider.CreateConfig(aai.AthenaRegion)
- if err != nil {
- return cfg, err
- }
- if aai.MasterPayerARN != "" {
- // Create the credentials from AssumeRoleProvider to assume the role
- // referenced by the roleARN.
- stsSvc := sts.NewFromConfig(cfg)
- creds := stscreds.NewAssumeRoleProvider(stsSvc, aai.MasterPayerARN)
- cfg.Credentials = awsSDK.NewCredentialsCache(creds)
- }
- return cfg, nil
- }
- func (aws *AWS) GetManagementPlatform() (string, error) {
- nodes := aws.Clientset.GetAllNodes()
- if len(nodes) > 0 {
- n := nodes[0]
- version := n.Status.NodeInfo.KubeletVersion
- if strings.Contains(version, "eks") {
- return "eks", nil
- }
- if _, ok := n.Labels["kops.k8s.io/instancegroup"]; ok {
- return "kops", nil
- }
- }
- return "", nil
- }
- func (aws *AWS) GetConfig() (*models.CustomPricing, error) {
- c, err := aws.Config.GetCustomPricingData()
- if err != nil {
- return nil, err
- }
- if c.Discount == "" {
- c.Discount = "0%"
- }
- if c.NegotiatedDiscount == "" {
- c.NegotiatedDiscount = "0%"
- }
- if c.ShareTenancyCosts == "" {
- c.ShareTenancyCosts = models.DefaultShareTenancyCost
- }
- return c, nil
- }
- // GetAWSAccessKey generate an AWSAccessKey object from the config
- func (aws *AWS) GetAWSAccessKey() (*AWSAccessKey, error) {
- config, err := aws.GetConfig()
- if err != nil {
- return nil, fmt.Errorf("could not retrieve AwsAthenaInfo %s", err)
- }
- err = aws.ConfigureAuthWith(config)
- if err != nil {
- return nil, fmt.Errorf("error configuring Cloud Provider %s", err)
- }
- //Look for service key values in env if not present in config
- if config.ServiceKeyName == "" {
- config.ServiceKeyName = ocenv.GetAWSAccessKeyID()
- }
- if config.ServiceKeySecret == "" {
- config.ServiceKeySecret = ocenv.GetAWSAccessKeySecret()
- }
- if config.ServiceKeyName == "" && config.ServiceKeySecret == "" {
- log.DedupedInfof(1, "missing service key values for AWS cloud integration attempting to use service account integration")
- }
- return &AWSAccessKey{AccessKeyID: config.ServiceKeyName, SecretAccessKey: config.ServiceKeySecret}, nil
- }
- // GetAWSAthenaInfo generate an AWSAthenaInfo object from the config
- func (aws *AWS) GetAWSAthenaInfo() (*AwsAthenaInfo, error) {
- config, err := aws.GetConfig()
- if err != nil {
- return nil, fmt.Errorf("could not retrieve AwsAthenaInfo %s", err)
- }
- aak, err := aws.GetAWSAccessKey()
- if err != nil {
- return nil, err
- }
- return &AwsAthenaInfo{
- AthenaBucketName: config.AthenaBucketName,
- AthenaRegion: config.AthenaRegion,
- AthenaDatabase: config.AthenaDatabase,
- AthenaCatalog: config.AthenaCatalog,
- AthenaTable: config.AthenaTable,
- AthenaWorkgroup: config.AthenaWorkgroup,
- ServiceKeyName: aak.AccessKeyID,
- ServiceKeySecret: aak.SecretAccessKey,
- AccountID: config.AthenaProjectID,
- MasterPayerARN: config.MasterPayerARN,
- }, nil
- }
- func (aws *AWS) UpdateConfigFromConfigMap(cm map[string]string) (*models.CustomPricing, error) {
- return aws.Config.UpdateFromMap(cm)
- }
- func (aws *AWS) UpdateConfig(r io.Reader, updateType string) (*models.CustomPricing, error) {
- return aws.Config.Update(func(c *models.CustomPricing) error {
- if updateType == SpotInfoUpdateType {
- asfi := AwsSpotFeedInfo{}
- err := json.NewDecoder(r).Decode(&asfi)
- if err != nil {
- return err
- }
- // If the sample nil service key name is set, zero it out so that it is not
- // misinterpreted as a real service key.
- if asfi.ServiceKeyName == "AKIXXX" {
- asfi.ServiceKeyName = ""
- }
- c.ServiceKeyName = asfi.ServiceKeyName
- if asfi.ServiceKeySecret != "" {
- c.ServiceKeySecret = asfi.ServiceKeySecret
- }
- c.SpotDataPrefix = asfi.Prefix
- c.SpotDataBucket = asfi.BucketName
- c.ProjectID = asfi.AccountID
- c.SpotDataRegion = asfi.Region
- c.SpotLabel = asfi.SpotLabel
- c.SpotLabelValue = asfi.SpotLabelValue
- } else if updateType == AthenaInfoUpdateType {
- aai := AwsAthenaInfo{}
- err := json.NewDecoder(r).Decode(&aai)
- if err != nil {
- return err
- }
- // If the sample nil service key name is set, zero it out so that it is not
- // misinterpreted as a real service key.
- if aai.ServiceKeyName == "AKIXXX" {
- aai.ServiceKeyName = ""
- }
- c.AthenaBucketName = aai.AthenaBucketName
- c.AthenaRegion = aai.AthenaRegion
- c.AthenaDatabase = aai.AthenaDatabase
- c.AthenaCatalog = aai.AthenaCatalog
- c.AthenaTable = aai.AthenaTable
- c.AthenaWorkgroup = aai.AthenaWorkgroup
- c.ServiceKeyName = aai.ServiceKeyName
- if aai.ServiceKeySecret != "" {
- c.ServiceKeySecret = aai.ServiceKeySecret
- }
- if aai.MasterPayerARN != "" {
- c.MasterPayerARN = aai.MasterPayerARN
- }
- c.AthenaProjectID = aai.AccountID
- } else {
- 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 ocenv.IsRemoteEnabled() {
- err := utils.UpdateClusterMeta(ocenv.GetClusterID(), c.ClusterName)
- if err != nil {
- return err
- }
- }
- return nil
- })
- }
- type awsKey struct {
- SpotLabelName string
- SpotLabelValue string
- Labels map[string]string
- ProviderID string
- }
- func (k *awsKey) GPUCount() int {
- return 0
- }
- func (k *awsKey) GPUType() string {
- return ""
- }
- func (k *awsKey) ID() string {
- for matchNum, group := range provIdRx.FindStringSubmatch(k.ProviderID) {
- if matchNum == 2 {
- return group
- }
- }
- log.Warnf("Could not find instance ID in \"%s\"", k.ProviderID)
- return ""
- }
- // Features will return a comma separated list of features for the given node
- // If the node has a spot label, it will be included in the list
- // Otherwise, the list include instance type, operating system, and the region
- func (k *awsKey) Features() string {
- instanceType, _ := util.GetInstanceType(k.Labels)
- operatingSystem, _ := util.GetOperatingSystem(k.Labels)
- region, _ := util.GetRegion(k.Labels)
- key := region + "," + instanceType + "," + operatingSystem
- usageType := k.getUsageType(k.Labels)
- spotKey := key + "," + usageType
- if l, ok := k.Labels["lifecycle"]; ok && l == "EC2Spot" {
- return spotKey
- }
- if l, ok := k.Labels[k.SpotLabelName]; ok && l == k.SpotLabelValue {
- return spotKey
- }
- if usageType == PreemptibleType {
- return spotKey
- }
- return key
- }
- // getUsageType returns the usage type of the instance
- // If the instance is a spot instance, it will return PreemptibleType
- // Otherwise returns an empty string
- func (k *awsKey) getUsageType(labels map[string]string) string {
- if kLabel, ok := labels[k.SpotLabelName]; ok && kLabel == k.SpotLabelValue {
- return PreemptibleType
- }
- if eksLabel, ok := labels[EKSCapacityTypeLabel]; ok && eksLabel == EKSCapacitySpotTypeValue {
- // We currently write out spot instances as "preemptible" in the pricing data, so these need to match
- return PreemptibleType
- }
- if kLabel, ok := labels[models.KarpenterCapacityTypeLabel]; ok && kLabel == models.KarpenterCapacitySpotTypeValue {
- return PreemptibleType
- }
- return ""
- }
- func (aws *AWS) PVPricing(pvk models.PVKey) (*models.PV, error) {
- pricing, ok := aws.Pricing[pvk.Features()]
- if !ok {
- log.Debugf("Persistent Volume pricing not found for %s: %s", pvk.GetStorageClass(), pvk.Features())
- return &models.PV{}, nil
- }
- return pricing.PV, nil
- }
- type awsPVKey struct {
- Labels map[string]string
- StorageClassParameters map[string]string
- StorageClassName string
- Name string
- DefaultRegion string
- ProviderID string
- }
- func (aws *AWS) GetPVKey(pv *v1.PersistentVolume, parameters map[string]string, defaultRegion string) models.PVKey {
- providerID := ""
- if pv.Spec.AWSElasticBlockStore != nil {
- providerID = pv.Spec.AWSElasticBlockStore.VolumeID
- } else if pv.Spec.CSI != nil {
- providerID = pv.Spec.CSI.VolumeHandle
- }
- return &awsPVKey{
- Labels: pv.Labels,
- StorageClassName: pv.Spec.StorageClassName,
- StorageClassParameters: parameters,
- Name: pv.Name,
- DefaultRegion: defaultRegion,
- ProviderID: providerID,
- }
- }
- func (key *awsPVKey) ID() string {
- return key.ProviderID
- }
- func (key *awsPVKey) GetStorageClass() string {
- return key.StorageClassName
- }
- func (key *awsPVKey) Features() string {
- storageClass, ok := key.StorageClassParameters["type"]
- if !ok {
- log.Debugf("storage class %s doesn't have a 'type' parameter", key.Name)
- storageClass = getStorageClassTypeFrom(key.StorageClassParameters["provisioner"])
- }
- if storageClass == "standard" {
- storageClass = "gp2"
- }
- // Storage class names are generally EBS volume types (gp2)
- // Keys in Pricing are based on UsageTypes (EBS:VolumeType.gp2)
- // Converts between the 2
- region, ok := util.GetRegion(key.Labels)
- if !ok {
- region = key.DefaultRegion
- }
- class, ok := volTypes[storageClass]
- if !ok {
- log.Debugf("No voltype mapping for %s's storageClass: %s", key.Name, storageClass)
- }
- return region + "," + class
- }
- // getStorageClassTypeFrom returns the default ebs volume type for a provider provisioner
- func getStorageClassTypeFrom(provisioner string) string {
- // if there isn't any provided provisioner, return empty volume type
- if provisioner == "" {
- return ""
- }
- scType, ok := StorageClassProvisionerDefaults[provisioner]
- if ok {
- log.Debugf("using default voltype %s for provisioner %s", scType, provisioner)
- return scType
- }
- return ""
- }
- // GetKey maps node labels to information needed to retrieve pricing data
- func (aws *AWS) GetKey(labels map[string]string, n *v1.Node) models.Key {
- return &awsKey{
- SpotLabelName: aws.SpotLabelName,
- SpotLabelValue: aws.SpotLabelValue,
- Labels: labels,
- ProviderID: labels["providerID"],
- }
- }
- func (aws *AWS) isPreemptible(key string) bool {
- s := strings.Split(key, ",")
- if len(s) == 4 && s[3] == PreemptibleType {
- return true
- }
- return false
- }
- func (aws *AWS) ClusterManagementPricing() (string, float64, error) {
- return aws.clusterProvisioner, aws.clusterManagementPrice, nil
- }
- // Use the pricing data from the current region. Fall back to using all region data if needed.
- func (aws *AWS) getRegionPricing(nodeList []*v1.Node) (*http.Response, string, error) {
- pricingURL := "https://pricing.us-east-1.amazonaws.com/offers/v1.0/aws/AmazonEC2/current/"
- region := ""
- multiregion := false
- for _, n := range nodeList {
- labels := n.GetLabels()
- currentNodeRegion := ""
- if r, ok := util.GetRegion(labels); ok {
- currentNodeRegion = r
- // Switch to Chinese endpoint for regions with the Chinese prefix
- if strings.HasPrefix(currentNodeRegion, "cn-") {
- pricingURL = "https://pricing.cn-north-1.amazonaws.com.cn/offers/v1.0/cn/AmazonEC2/current/"
- }
- } else {
- multiregion = true // We weren't able to detect the node's region, so pull all data.
- break
- }
- if region == "" { // We haven't set a region yet
- region = currentNodeRegion
- } else if region != "" && currentNodeRegion != region { // If two nodes have different regions here, we'll need to fetch all pricing data.
- multiregion = true
- break
- }
- }
- // Chinese multiregion endpoint only contains data for Chinese regions and Chinese regions are excluded from other endpoint
- if region != "" && !multiregion {
- pricingURL += region + "/"
- }
- pricingURL += "index.json"
- if ocenv.GetAWSPricingURL() != "" { // Allow override of pricing URL
- pricingURL = ocenv.GetAWSPricingURL()
- }
- log.Infof("starting download of \"%s\", which is quite large ...", pricingURL)
- resp, err := http.Get(pricingURL)
- if err != nil {
- log.Errorf("Bogus fetch of \"%s\": %v", pricingURL, err)
- return nil, pricingURL, err
- }
- return resp, pricingURL, err
- }
- // SpotRefreshEnabled determines whether the required configs to run the spot feed query have been set up
- func (aws *AWS) SpotRefreshEnabled() bool {
- // Need a valid value for at least one of these fields to consider spot pricing as enabled
- return len(aws.SpotDataBucket) != 0 || len(aws.SpotDataRegion) != 0 || len(aws.ProjectID) != 0
- }
- // DownloadPricingData fetches data from the AWS Pricing API
- func (aws *AWS) DownloadPricingData() error {
- aws.DownloadPricingDataLock.Lock()
- defer aws.DownloadPricingDataLock.Unlock()
- c, err := aws.Config.GetCustomPricingData()
- if err != nil {
- log.Errorf("Error downloading default pricing data: %s", err.Error())
- }
- aws.BaseCPUPrice = c.CPU
- aws.BaseRAMPrice = c.RAM
- aws.BaseGPUPrice = c.GPU
- aws.BaseSpotCPUPrice = c.SpotCPU
- aws.BaseSpotRAMPrice = c.SpotRAM
- aws.BaseSpotGPUPrice = c.SpotGPU
- aws.SpotLabelName = c.SpotLabel
- aws.SpotLabelValue = c.SpotLabelValue
- aws.SpotDataBucket = c.SpotDataBucket
- aws.SpotDataPrefix = c.SpotDataPrefix
- aws.ProjectID = c.ProjectID
- aws.SpotDataRegion = c.SpotDataRegion
- aws.ConfigureAuthWith(c) // load aws authentication from configuration or secret
- if len(aws.SpotDataBucket) != 0 && len(aws.ProjectID) == 0 {
- log.Warnf("using SpotDataBucket \"%s\" without ProjectID will not end well", aws.SpotDataBucket)
- }
- nodeList := aws.Clientset.GetAllNodes()
- inputkeys := make(map[string]bool)
- for _, n := range nodeList {
- if _, ok := n.Labels["eks.amazonaws.com/nodegroup"]; ok {
- aws.clusterManagementPrice = 0.10
- aws.clusterProvisioner = "EKS"
- } else if _, ok := n.Labels["kops.k8s.io/instancegroup"]; ok {
- aws.clusterProvisioner = "KOPS"
- }
- labels := n.GetObjectMeta().GetLabels()
- key := aws.GetKey(labels, n)
- inputkeys[key.Features()] = true
- }
- pvList := aws.Clientset.GetAllPersistentVolumes()
- storageClasses := aws.Clientset.GetAllStorageClasses()
- storageClassMap := make(map[string]map[string]string)
- for _, storageClass := range storageClasses {
- params := storageClass.Parameters
- if params != nil {
- params["provisioner"] = storageClass.Provisioner
- }
- storageClassMap[storageClass.ObjectMeta.Name] = params
- if storageClass.GetAnnotations()["storageclass.kubernetes.io/is-default-class"] == "true" || storageClass.GetAnnotations()["storageclass.beta.kubernetes.io/is-default-class"] == "true" {
- storageClassMap["default"] = params
- storageClassMap[""] = params
- }
- }
- pvkeys := make(map[string]models.PVKey)
- for _, pv := range pvList {
- params, ok := storageClassMap[pv.Spec.StorageClassName]
- if !ok {
- log.Infof("Unable to find params for storageClassName %s, falling back to default pricing", pv.Spec.StorageClassName)
- continue
- }
- key := aws.GetPVKey(pv, params, "")
- pvkeys[key.Features()] = key
- }
- // RIDataRunning establishes the existence of the goroutine. Since it's possible we
- // run multiple downloads, we don't want to create multiple go routines if one already exists
- if !aws.RIDataRunning {
- err = aws.GetReservationDataFromAthena() // Block until one run has completed.
- if err != nil {
- log.Errorf("Failed to lookup reserved instance data: %s", err.Error())
- } else { // If we make one successful run, check on new reservation data every hour
- go func() {
- defer errs.HandlePanic()
- aws.RIDataRunning = true
- for {
- log.Infof("Reserved Instance watcher running... next update in 1h")
- time.Sleep(time.Hour)
- err := aws.GetReservationDataFromAthena()
- if err != nil {
- log.Infof("Error updating RI data: %s", err.Error())
- }
- }
- }()
- }
- }
- if !aws.SavingsPlanDataRunning {
- err = aws.GetSavingsPlanDataFromAthena()
- if err != nil {
- log.Errorf("Failed to lookup savings plan data: %s", err.Error())
- } else {
- go func() {
- defer errs.HandlePanic()
- aws.SavingsPlanDataRunning = true
- for {
- log.Infof("Savings Plan watcher running... next update in 1h")
- time.Sleep(time.Hour)
- err := aws.GetSavingsPlanDataFromAthena()
- if err != nil {
- log.Infof("Error updating Savings Plan data: %s", err.Error())
- }
- }
- }()
- }
- }
- aws.ValidPricingKeys = make(map[string]bool)
- resp, pricingURL, err := aws.getRegionPricing(nodeList)
- if err != nil {
- return err
- }
- err = aws.populatePricing(resp, inputkeys)
- if err != nil {
- return err
- }
- log.Infof("Finished downloading \"%s\"", pricingURL)
- if !aws.SpotRefreshEnabled() {
- return nil
- }
- // Always run spot pricing refresh when performing download
- aws.refreshSpotPricing(true)
- // Only start a single refresh goroutine
- if !aws.SpotRefreshRunning {
- aws.SpotRefreshRunning = true
- go func() {
- defer errs.HandlePanic()
- for {
- log.Infof("Spot Pricing Refresh scheduled in %.2f minutes.", SpotRefreshDuration.Minutes())
- time.Sleep(SpotRefreshDuration)
- // Reoccurring refresh checks update times
- aws.refreshSpotPricing(false)
- }
- }()
- }
- return nil
- }
- func (aws *AWS) populatePricing(resp *http.Response, inputkeys map[string]bool) error {
- aws.Pricing = make(map[string]*AWSProductTerms)
- skusToKeys := make(map[string]string)
- dec := json.NewDecoder(resp.Body)
- for {
- t, err := dec.Token()
- if err == io.EOF {
- log.Infof("done loading \"%s\"\n", resp.Request.URL.String())
- break
- } else if err != nil {
- log.Errorf("error parsing response json %v", resp.Body)
- break
- }
- if t == "products" {
- _, err := dec.Token() // this should parse the opening "{""
- if err != nil {
- return err
- }
- for dec.More() {
- _, err := dec.Token() // the sku token
- if err != nil {
- return err
- }
- product := &AWSProduct{}
- err = dec.Decode(&product)
- if err != nil {
- log.Errorf("Error parsing response from \"%s\": %v", resp.Request.URL.String(), err.Error())
- break
- }
- if product.Attributes.PreInstalledSw == "NA" &&
- (strings.HasPrefix(product.Attributes.UsageType, "BoxUsage") || strings.Contains(product.Attributes.UsageType, "-BoxUsage")) &&
- product.Attributes.CapacityStatus == "Used" &&
- product.Attributes.MarketOption == "OnDemand" {
- key := aws.KubeAttrConversion(product.Attributes.RegionCode, product.Attributes.InstanceType, product.Attributes.OperatingSystem)
- spotKey := key + ",preemptible"
- if inputkeys[key] || inputkeys[spotKey] { // Just grab the sku even if spot, and change the price later.
- productTerms := &AWSProductTerms{
- Sku: product.Sku,
- Memory: product.Attributes.Memory,
- Storage: product.Attributes.Storage,
- VCpu: product.Attributes.VCpu,
- GPU: product.Attributes.GPU,
- }
- aws.Pricing[key] = productTerms
- aws.Pricing[spotKey] = productTerms
- skusToKeys[product.Sku] = key
- }
- aws.ValidPricingKeys[key] = true
- aws.ValidPricingKeys[spotKey] = true
- } else if strings.Contains(product.Attributes.UsageType, "EBS:Volume") {
- // UsageTypes may be prefixed with a region code - we're removing this when using
- // volTypes to keep lookups generic
- usageTypeMatch := usageTypeRegx.FindStringSubmatch(product.Attributes.UsageType)
- usageTypeNoRegion := usageTypeMatch[len(usageTypeMatch)-1]
- key := product.Attributes.RegionCode + "," + usageTypeNoRegion
- spotKey := key + ",preemptible"
- pv := &models.PV{
- Class: volTypes[usageTypeNoRegion],
- Region: product.Attributes.RegionCode,
- }
- productTerms := &AWSProductTerms{
- Sku: product.Sku,
- PV: pv,
- }
- aws.Pricing[key] = productTerms
- aws.Pricing[spotKey] = productTerms
- skusToKeys[product.Sku] = key
- aws.ValidPricingKeys[key] = true
- aws.ValidPricingKeys[spotKey] = true
- } else if strings.Contains(product.Attributes.UsageType, "LoadBalancerUsage") && product.Attributes.Operation == "LoadBalancing:Network" {
- // since the costmodel is only using services of type LoadBalancer
- // (and not ingresses controlled by AWS load balancer controller)
- // we can safely filter for Network load balancers only
- productTerms := &AWSProductTerms{
- Sku: product.Sku,
- LoadBalancer: &models.LoadBalancer{},
- }
- // there is no spot pricing for load balancers
- key := product.Attributes.RegionCode + ",LoadBalancerUsage"
- aws.Pricing[key] = productTerms
- skusToKeys[product.Sku] = key
- aws.ValidPricingKeys[key] = true
- }
- }
- }
- if t == "terms" {
- _, err := dec.Token() // this should parse the opening "{""
- if err != nil {
- return err
- }
- termType, err := dec.Token()
- if err != nil {
- return err
- }
- if termType == "OnDemand" {
- _, err := dec.Token()
- if err != nil { // again, should parse an opening "{"
- return err
- }
- for dec.More() {
- sku, err := dec.Token()
- if err != nil {
- return err
- }
- _, err = dec.Token() // another opening "{"
- if err != nil {
- return err
- }
- // SKUOndemand
- _, err = dec.Token()
- if err != nil {
- return err
- }
- offerTerm := &AWSOfferTerm{}
- err = dec.Decode(&offerTerm)
- if err != nil {
- log.Errorf("Error decoding AWS Offer Term: " + err.Error())
- }
- key, ok := skusToKeys[sku.(string)]
- spotKey := key + ",preemptible"
- if ok {
- aws.Pricing[key].OnDemand = offerTerm
- if _, ok := aws.Pricing[spotKey]; ok {
- aws.Pricing[spotKey].OnDemand = offerTerm
- }
- var cost string
- if _, isMatch := OnDemandRateCodes[offerTerm.OfferTermCode]; isMatch {
- priceDimensionKey := strings.Join([]string{sku.(string), offerTerm.OfferTermCode, HourlyRateCode}, ".")
- dimension, ok := offerTerm.PriceDimensions[priceDimensionKey]
- if ok {
- cost = dimension.PricePerUnit.USD
- } else {
- // this is an edge case seen in AWS CN pricing files, including here just in case
- // if there is only one dimension, use it, even if the key is incorrect, otherwise assume defaults
- if len(offerTerm.PriceDimensions) == 1 {
- for key, backupDimension := range offerTerm.PriceDimensions {
- cost = backupDimension.PricePerUnit.USD
- log.DedupedWarningf(5, "using:%s for a price dimension instead of missing dimension: %s", offerTerm.PriceDimensions[key], priceDimensionKey)
- break
- }
- } else if len(offerTerm.PriceDimensions) == 0 {
- log.DedupedWarningf(5, "populatePricing: no pricing dimension available for: %s.", priceDimensionKey)
- } else {
- log.DedupedWarningf(5, "populatePricing: no assumable pricing dimension available for: %s.", priceDimensionKey)
- }
- }
- } else if _, isMatch := OnDemandRateCodesCn[offerTerm.OfferTermCode]; isMatch {
- priceDimensionKey := strings.Join([]string{sku.(string), offerTerm.OfferTermCode, HourlyRateCodeCn}, ".")
- dimension, ok := offerTerm.PriceDimensions[priceDimensionKey]
- if ok {
- cost = dimension.PricePerUnit.CNY
- } else {
- // fall through logic for handling inconsistencies in AWS CN pricing files
- // if there is only one dimension, use it, even if the key is incorrect, otherwise assume defaults
- if len(offerTerm.PriceDimensions) == 1 {
- for key, backupDimension := range offerTerm.PriceDimensions {
- cost = backupDimension.PricePerUnit.CNY
- log.DedupedWarningf(5, "using:%s for a price dimension instead of missing dimension: %s", offerTerm.PriceDimensions[key], priceDimensionKey)
- break
- }
- } else if len(offerTerm.PriceDimensions) == 0 {
- log.DedupedWarningf(5, "populatePricing: no pricing dimension available for: %s.", priceDimensionKey)
- } else {
- log.DedupedWarningf(5, "populatePricing: no assumable pricing dimension available for: %s.", priceDimensionKey)
- }
- }
- }
- if strings.Contains(key, "EBS:VolumeP-IOPS.piops") {
- // If the specific UsageType is the per IO cost used on io1 volumes
- // we need to add the per IO cost to the io1 PV cost
- // Add the per IO cost to the PV object for the io1 volume type
- aws.Pricing[key].PV.CostPerIO = cost
- } else if strings.Contains(key, "EBS:Volume") {
- // If volume, we need to get hourly cost and add it to the PV object
- costFloat, _ := strconv.ParseFloat(cost, 64)
- hourlyPrice := costFloat / 730
- aws.Pricing[key].PV.Cost = strconv.FormatFloat(hourlyPrice, 'f', -1, 64)
- } else if strings.Contains(key, "LoadBalancerUsage") {
- costFloat, err := strconv.ParseFloat(cost, 64)
- if err != nil {
- return err
- }
- aws.Pricing[key].LoadBalancer.Cost = costFloat
- }
- }
- _, err = dec.Token()
- if err != nil {
- return err
- }
- }
- _, err = dec.Token()
- if err != nil {
- return err
- }
- }
- }
- }
- return nil
- }
- func (aws *AWS) refreshSpotPricing(force bool) {
- aws.SpotPricingLock.Lock()
- defer aws.SpotPricingLock.Unlock()
- now := time.Now().UTC()
- updateTime := now.Add(-SpotRefreshDuration)
- // Return if there was an update time set and an hour hasn't elapsed
- if !force && aws.SpotPricingUpdatedAt != nil && aws.SpotPricingUpdatedAt.After(updateTime) {
- return
- }
- sp, err := aws.parseSpotData(aws.SpotDataBucket, aws.SpotDataPrefix, aws.ProjectID, aws.SpotDataRegion)
- if err != nil {
- log.Warnf("Skipping AWS spot data download: %s", err.Error())
- aws.SpotPricingError = err
- return
- }
- aws.SpotPricingError = nil
- // update time last updated
- aws.SpotPricingUpdatedAt = &now
- aws.SpotPricingByInstanceID = sp
- }
- // Stubbed NetworkPricing for AWS. Pull directly from aws.json for now
- func (aws *AWS) NetworkPricing() (*models.Network, error) {
- cpricing, err := aws.Config.GetCustomPricingData()
- if err != nil {
- return nil, err
- }
- znec, err := strconv.ParseFloat(cpricing.ZoneNetworkEgress, 64)
- if err != nil {
- return nil, err
- }
- rnec, err := strconv.ParseFloat(cpricing.RegionNetworkEgress, 64)
- if err != nil {
- return nil, err
- }
- inec, err := strconv.ParseFloat(cpricing.InternetNetworkEgress, 64)
- if err != nil {
- return nil, err
- }
- return &models.Network{
- ZoneNetworkEgressCost: znec,
- RegionNetworkEgressCost: rnec,
- InternetNetworkEgressCost: inec,
- }, nil
- }
- func (aws *AWS) LoadBalancerPricing() (*models.LoadBalancer, error) {
- // TODO: determine key based on function arguments
- // this is something that should be changed in the Provider interface
- key := aws.ClusterRegion + ",LoadBalancerUsage"
- // set default price
- hourlyCost := 0.025
- // use price index when available
- if terms, ok := aws.Pricing[key]; ok {
- hourlyCost = terms.LoadBalancer.Cost
- }
- return &models.LoadBalancer{
- Cost: hourlyCost,
- }, nil
- }
- // AllNodePricing returns all the billing data fetched.
- func (aws *AWS) AllNodePricing() (interface{}, error) {
- aws.DownloadPricingDataLock.RLock()
- defer aws.DownloadPricingDataLock.RUnlock()
- return aws.Pricing, nil
- }
- func (aws *AWS) spotPricing(instanceID string) (*spotInfo, bool) {
- aws.SpotPricingLock.RLock()
- defer aws.SpotPricingLock.RUnlock()
- info, ok := aws.SpotPricingByInstanceID[instanceID]
- return info, ok
- }
- func (aws *AWS) reservedInstancePricing(instanceID string) (*RIData, bool) {
- aws.RIDataLock.RLock()
- defer aws.RIDataLock.RUnlock()
- data, ok := aws.RIPricingByInstanceID[instanceID]
- return data, ok
- }
- func (aws *AWS) savingsPlanPricing(instanceID string) (*SavingsPlanData, bool) {
- aws.SavingsPlanDataLock.RLock()
- defer aws.SavingsPlanDataLock.RUnlock()
- data, ok := aws.SavingsPlanDataByInstanceID[instanceID]
- return data, ok
- }
- func (aws *AWS) createNode(terms *AWSProductTerms, usageType string, k models.Key) (*models.Node, models.PricingMetadata, error) {
- key := k.Features()
- meta := models.PricingMetadata{}
- var cost string
- publicPricingFound := true
- c, ok := terms.OnDemand.PriceDimensions[strings.Join([]string{terms.Sku, terms.OnDemand.OfferTermCode, HourlyRateCode}, ".")]
- if ok {
- cost = c.PricePerUnit.USD
- } else {
- // Check for Chinese pricing
- c, ok = terms.OnDemand.PriceDimensions[strings.Join([]string{terms.Sku, terms.OnDemand.OfferTermCode, HourlyRateCodeCn}, ".")]
- if ok {
- cost = c.PricePerUnit.CNY
- } else {
- publicPricingFound = false
- }
- }
- if spotInfo, ok := aws.spotPricing(k.ID()); ok {
- var spotcost string
- log.DedupedInfof(5, "Looking up spot data from feed for node %s", k.ID())
- arr := strings.Split(spotInfo.Charge, " ")
- if len(arr) == 2 {
- spotcost = arr[0]
- } else {
- log.Infof("Spot data for node %s is missing", k.ID())
- }
- return &models.Node{
- Cost: spotcost,
- VCPU: terms.VCpu,
- RAM: terms.Memory,
- GPU: terms.GPU,
- Storage: terms.Storage,
- BaseCPUPrice: aws.BaseCPUPrice,
- BaseRAMPrice: aws.BaseRAMPrice,
- BaseGPUPrice: aws.BaseGPUPrice,
- UsageType: PreemptibleType,
- }, meta, nil
- } else if aws.isPreemptible(key) { // Preemptible but we don't have any data in the pricing report.
- log.DedupedWarningf(5, "Node %s marked preemptible but we have no data in spot feed", k.ID())
- if publicPricingFound {
- // return public price if found
- return &models.Node{
- Cost: cost,
- VCPU: terms.VCpu,
- RAM: terms.Memory,
- GPU: terms.GPU,
- Storage: terms.Storage,
- BaseCPUPrice: aws.BaseCPUPrice,
- BaseRAMPrice: aws.BaseRAMPrice,
- BaseGPUPrice: aws.BaseGPUPrice,
- UsageType: PreemptibleType,
- }, meta, nil
- } else {
- // return defaults if public pricing not found
- log.DedupedWarningf(5, "Could not find Node %s's public pricing info, using default configured spot prices instead", k.ID())
- return &models.Node{
- VCPU: terms.VCpu,
- VCPUCost: aws.BaseSpotCPUPrice,
- RAMCost: aws.BaseSpotRAMPrice,
- RAM: terms.Memory,
- GPU: terms.GPU,
- Storage: terms.Storage,
- BaseCPUPrice: aws.BaseCPUPrice,
- BaseRAMPrice: aws.BaseRAMPrice,
- BaseGPUPrice: aws.BaseGPUPrice,
- UsageType: PreemptibleType,
- }, meta, nil
- }
- } else if sp, ok := aws.savingsPlanPricing(k.ID()); ok {
- strCost := fmt.Sprintf("%f", sp.EffectiveCost)
- return &models.Node{
- Cost: strCost,
- VCPU: terms.VCpu,
- RAM: terms.Memory,
- GPU: terms.GPU,
- Storage: terms.Storage,
- BaseCPUPrice: aws.BaseCPUPrice,
- BaseRAMPrice: aws.BaseRAMPrice,
- BaseGPUPrice: aws.BaseGPUPrice,
- UsageType: usageType,
- }, meta, nil
- } else if ri, ok := aws.reservedInstancePricing(k.ID()); ok {
- strCost := fmt.Sprintf("%f", ri.EffectiveCost)
- return &models.Node{
- Cost: strCost,
- VCPU: terms.VCpu,
- RAM: terms.Memory,
- GPU: terms.GPU,
- Storage: terms.Storage,
- BaseCPUPrice: aws.BaseCPUPrice,
- BaseRAMPrice: aws.BaseRAMPrice,
- BaseGPUPrice: aws.BaseGPUPrice,
- UsageType: usageType,
- }, meta, nil
- }
- // Throw error if public price is not found
- if !publicPricingFound {
- return nil, meta, fmt.Errorf("for node \"%s\", cannot find the following key in OnDemand pricing data \"%s\"", k.ID(), k.Features())
- }
- return &models.Node{
- Cost: cost,
- VCPU: terms.VCpu,
- RAM: terms.Memory,
- GPU: terms.GPU,
- Storage: terms.Storage,
- BaseCPUPrice: aws.BaseCPUPrice,
- BaseRAMPrice: aws.BaseRAMPrice,
- BaseGPUPrice: aws.BaseGPUPrice,
- UsageType: usageType,
- }, meta, nil
- }
- // NodePricing takes in a key from GetKey and returns a Node object for use in building the cost model.
- func (aws *AWS) NodePricing(k models.Key) (*models.Node, models.PricingMetadata, error) {
- aws.DownloadPricingDataLock.RLock()
- defer aws.DownloadPricingDataLock.RUnlock()
- key := k.Features()
- usageType := "ondemand"
- if aws.isPreemptible(key) {
- usageType = PreemptibleType
- }
- meta := models.PricingMetadata{}
- terms, ok := aws.Pricing[key]
- if termsStr, err := json.Marshal(terms); err == nil {
- log.Debugf("NodePricing: for key \"%s\" found the following OnDemand data: %s", key, string(termsStr))
- }
- if ok {
- return aws.createNode(terms, usageType, k)
- } else if _, ok := aws.ValidPricingKeys[key]; ok {
- aws.DownloadPricingDataLock.RUnlock()
- err := aws.DownloadPricingData()
- aws.DownloadPricingDataLock.RLock()
- if err != nil {
- return &models.Node{
- Cost: aws.BaseCPUPrice,
- BaseCPUPrice: aws.BaseCPUPrice,
- BaseRAMPrice: aws.BaseRAMPrice,
- BaseGPUPrice: aws.BaseGPUPrice,
- UsageType: usageType,
- UsesBaseCPUPrice: true,
- }, meta, err
- }
- terms, termsOk := aws.Pricing[key]
- if !termsOk {
- return &models.Node{
- Cost: aws.BaseCPUPrice,
- BaseCPUPrice: aws.BaseCPUPrice,
- BaseRAMPrice: aws.BaseRAMPrice,
- BaseGPUPrice: aws.BaseGPUPrice,
- UsageType: usageType,
- UsesBaseCPUPrice: true,
- }, meta, fmt.Errorf("Unable to find any Pricing data for \"%s\"", key)
- }
- return aws.createNode(terms, usageType, k)
- } else { // Fall back to base pricing if we can't find the key. Base pricing is handled at the costmodel level.
- return nil, meta, fmt.Errorf("Invalid Pricing Key \"%s\"", key)
- }
- }
- // ClusterInfo returns an object that represents the cluster. TODO: actually return the name of the cluster. Blocked on cluster federation.
- func (awsProvider *AWS) ClusterInfo() (map[string]string, error) {
- c, err := awsProvider.GetConfig()
- if err != nil {
- return nil, err
- }
- const defaultClusterName = "AWS Cluster #1"
- // Determine cluster name
- clusterName := c.ClusterName
- if clusterName == "" {
- awsClusterID := ocenv.GetAWSClusterID()
- if awsClusterID != "" {
- log.Infof("Returning \"%s\" as ClusterName", awsClusterID)
- clusterName = awsClusterID
- log.Warnf("Warning - %s will be deprecated in a future release. Use %s instead", ocenv.AWSClusterIDEnvVar, ocenv.ClusterIDEnvVar)
- } else if clusterName = ocenv.GetClusterID(); clusterName != "" {
- log.DedupedInfof(5, "Setting cluster name to %s from %s ", clusterName, ocenv.ClusterIDEnvVar)
- } else {
- clusterName = defaultClusterName
- log.DedupedWarningf(5, "Unable to detect cluster name - using default of %s", defaultClusterName)
- log.DedupedWarningf(5, "Please set cluster name through configmap or via %s env var", ocenv.ClusterIDEnvVar)
- }
- }
- // this value requires configuration but is unavailable else where
- clusterAccountID := c.ClusterAccountID
- // Use AthenaProjectID if Cluster Account is not set to support older configs
- if clusterAccountID == "" {
- clusterAccountID = c.AthenaProjectID
- }
- m := make(map[string]string)
- m["name"] = clusterName
- m["provider"] = opencost.AWSProvider
- m["account"] = clusterAccountID
- m["region"] = awsProvider.ClusterRegion
- m["id"] = ocenv.GetClusterID()
- m["remoteReadEnabled"] = strconv.FormatBool(ocenv.IsRemoteEnabled())
- m["provisioner"] = awsProvider.clusterProvisioner
- return m, nil
- }
- // updates the authentication to the latest values (via config or secret)
- func (aws *AWS) ConfigureAuth() error {
- c, err := aws.Config.GetCustomPricingData()
- if err != nil {
- log.Errorf("Error downloading default pricing data: %s", err.Error())
- }
- return aws.ConfigureAuthWith(c)
- }
- // updates the authentication to the latest values (via config or secret)
- func (aws *AWS) ConfigureAuthWith(config *models.CustomPricing) error {
- accessKeyID, accessKeySecret := aws.getAWSAuth(false, config)
- if accessKeyID != "" && accessKeySecret != "" { // credentials may exist on the actual AWS node-- if so, use those. If not, override with the service key
- err := env.Set(ocenv.AWSAccessKeyIDEnvVar, accessKeyID)
- if err != nil {
- return err
- }
- err = env.Set(ocenv.AWSAccessKeySecretEnvVar, accessKeySecret)
- if err != nil {
- return err
- }
- }
- return nil
- }
- // Gets the aws key id and secret
- func (aws *AWS) getAWSAuth(forceReload bool, cp *models.CustomPricing) (string, string) {
- // 1. Check config values first (set from frontend UI)
- if cp.ServiceKeyName != "" && cp.ServiceKeySecret != "" {
- aws.ServiceAccountChecks.Set("hasKey", &models.ServiceAccountCheck{
- Message: "AWS ServiceKey exists",
- Status: true,
- })
- return cp.ServiceKeyName, cp.ServiceKeySecret
- }
- // 2. Check for secret
- s, _ := aws.loadAWSAuthSecret(forceReload)
- if s != nil && s.AccessKeyID != "" && s.SecretAccessKey != "" {
- aws.ServiceAccountChecks.Set("hasKey", &models.ServiceAccountCheck{
- Message: "AWS ServiceKey exists",
- Status: true,
- })
- return s.AccessKeyID, s.SecretAccessKey
- }
- // 3. Fall back to env vars
- if ocenv.GetAWSAccessKeyID() == "" || ocenv.GetAWSAccessKeySecret() == "" {
- aws.ServiceAccountChecks.Set("hasKey", &models.ServiceAccountCheck{
- Message: "AWS ServiceKey exists",
- Status: false,
- })
- } else {
- aws.ServiceAccountChecks.Set("hasKey", &models.ServiceAccountCheck{
- Message: "AWS ServiceKey exists",
- Status: true,
- })
- }
- return ocenv.GetAWSAccessKeyID(), ocenv.GetAWSAccessKeySecret()
- }
- // Load once and cache the result (even on failure). This is an install time secret, so
- // we don't expect the secret to change. If it does, however, we can force reload using
- // the input parameter.
- func (aws *AWS) loadAWSAuthSecret(force bool) (*AWSAccessKey, error) {
- if !force && loadedAWSSecret {
- return awsSecret, nil
- }
- loadedAWSSecret = true
- exists, err := fileutil.FileExists(models.AuthSecretPath)
- if !exists || err != nil {
- return nil, fmt.Errorf("Failed to locate service account file: %s", models.AuthSecretPath)
- }
- result, err := os.ReadFile(models.AuthSecretPath)
- if err != nil {
- return nil, err
- }
- var ak AWSAccessKey
- err = json.Unmarshal(result, &ak)
- if err != nil {
- return nil, err
- }
- // If the sample nil service key name is set, zero it out so that it is not
- // misinterpreted as a real service key.
- if ak.AccessKeyID == "AKIXXX" {
- ak.AccessKeyID = ""
- }
- awsSecret = &ak
- return awsSecret, nil
- }
- func (aws *AWS) getAddressesForRegion(ctx context.Context, region string) (*ec2.DescribeAddressesOutput, error) {
- aak, err := aws.GetAWSAccessKey()
- if err != nil {
- return nil, err
- }
- cfg, err := aak.CreateConfig(region)
- if err != nil {
- return nil, err
- }
- cli := ec2.NewFromConfig(cfg)
- return cli.DescribeAddresses(ctx, &ec2.DescribeAddressesInput{})
- }
- func (aws *AWS) getAllAddresses() ([]*ec2Types.Address, error) {
- aws.ConfigureAuth() // load authentication data into env vars
- regions := aws.Regions()
- addressCh := make(chan *ec2.DescribeAddressesOutput, len(regions))
- errorCh := make(chan error, len(regions))
- var wg sync.WaitGroup
- wg.Add(len(regions))
- // Get volumes from each AWS region
- for _, r := range regions {
- region := r // make a copy of r to avoid capturing loop variable
- // Fetch IP address response and send results and errors to their
- // respective channels
- go func() {
- defer wg.Done()
- defer errs.HandlePanic()
- // Query for first page of volume results
- resp, err := aws.getAddressesForRegion(context.TODO(), region)
- if err != nil {
- var awsErr smithy.APIError
- if errors.As(err, &awsErr) {
- switch awsErr.ErrorCode() {
- case "AuthFailure", "InvalidClientTokenId", "UnauthorizedOperation":
- log.DedupedInfof(5, "Unable to get addresses for region %s due to AWS permissions, error message: %s", region, awsErr.ErrorMessage())
- return
- default:
- errorCh <- err
- return
- }
- } else {
- errorCh <- err
- return
- }
- }
- addressCh <- resp
- }()
- }
- // Close the result channels after everything has been sent
- go func() {
- defer errs.HandlePanic()
- wg.Wait()
- close(errorCh)
- close(addressCh)
- }()
- var addresses []*ec2Types.Address
- for adds := range addressCh {
- for _, add := range adds.Addresses {
- a := add // duplicate to avoid pointer to iterator
- addresses = append(addresses, &a)
- }
- }
- var errs []error
- for err := range errorCh {
- log.DedupedWarningf(5, "unable to get addresses: %s", err)
- errs = append(errs, err)
- }
- // Return error if no addresses are returned
- if len(errs) > 0 && len(addresses) == 0 {
- return nil, fmt.Errorf("%d error(s) retrieving addresses: %v", len(errs), errs)
- }
- return addresses, nil
- }
- // GetAddresses retrieves EC2 addresses
- func (aws *AWS) GetAddresses() ([]byte, error) {
- addresses, err := aws.getAllAddresses()
- if err != nil {
- return nil, err
- }
- // Format the response this way to match the JSON-encoded formatting of a single response
- // from DescribeAddresss, so that consumers can always expect AWS disk responses to have
- // a "Addresss" key at the top level.
- return json.Marshal(map[string][]*ec2Types.Address{
- "Addresses": addresses,
- })
- }
- func (aws *AWS) isAddressOrphaned(address *ec2Types.Address) bool {
- if address.AssociationId != nil {
- return false
- }
- return true
- }
- func (aws *AWS) getDisksForRegion(ctx context.Context, region string, maxResults int32, nextToken *string) (*ec2.DescribeVolumesOutput, error) {
- aak, err := aws.GetAWSAccessKey()
- if err != nil {
- return nil, err
- }
- cfg, err := aak.CreateConfig(region)
- if err != nil {
- return nil, err
- }
- cli := ec2.NewFromConfig(cfg)
- return cli.DescribeVolumes(ctx, &ec2.DescribeVolumesInput{
- MaxResults: &maxResults,
- NextToken: nextToken,
- })
- }
- func (aws *AWS) getAllDisks() ([]*ec2Types.Volume, error) {
- aws.ConfigureAuth() // load authentication data into env vars
- regions := aws.Regions()
- volumeCh := make(chan *ec2.DescribeVolumesOutput, len(regions))
- errorCh := make(chan error, len(regions))
- var wg sync.WaitGroup
- wg.Add(len(regions))
- // Get volumes from each AWS region
- for _, r := range regions {
- // Fetch volume response and send results and errors to their
- // respective channels
- go func(region string) {
- defer wg.Done()
- defer errs.HandlePanic()
- // Query for first page of volume results
- resp, err := aws.getDisksForRegion(context.TODO(), region, 1000, nil)
- if err != nil {
- var awsErr smithy.APIError
- if errors.As(err, &awsErr) {
- switch awsErr.ErrorCode() {
- case "AuthFailure", "InvalidClientTokenId", "UnauthorizedOperation":
- log.DedupedInfof(5, "Unable to get disks for region %s due to AWS permissions, error message: %s", region, awsErr.ErrorMessage())
- return
- default:
- errorCh <- err
- return
- }
- } else {
- errorCh <- err
- return
- }
- }
- volumeCh <- resp
- // A NextToken indicates more pages of results. Keep querying
- // until all pages are retrieved.
- for resp.NextToken != nil {
- resp, err = aws.getDisksForRegion(context.TODO(), region, 100, resp.NextToken)
- if err != nil {
- errorCh <- err
- return
- }
- volumeCh <- resp
- }
- }(r)
- }
- // Close the result channels after everything has been sent
- go func() {
- defer errs.HandlePanic()
- wg.Wait()
- close(errorCh)
- close(volumeCh)
- }()
- var volumes []*ec2Types.Volume
- for vols := range volumeCh {
- for _, vol := range vols.Volumes {
- v := vol // duplicate to avoid pointer to iterator
- volumes = append(volumes, &v)
- }
- }
- var errs []error
- for err := range errorCh {
- log.DedupedWarningf(5, "unable to get disks: %s", err)
- errs = append(errs, err)
- }
- // Return error if no volumes are returned
- if len(errs) > 0 && len(volumes) == 0 {
- return nil, fmt.Errorf("%d error(s) retrieving volumes: %v", len(errs), errs)
- }
- return volumes, nil
- }
- // GetDisks returns the AWS disks backing PVs. Useful because sometimes k8s will not clean up PVs correctly. Requires a json config in /var/configs with key region.
- func (aws *AWS) GetDisks() ([]byte, error) {
- volumes, err := aws.getAllDisks()
- if err != nil {
- return nil, err
- }
- // Format the response this way to match the JSON-encoded formatting of a single response
- // from DescribeVolumes, so that consumers can always expect AWS disk responses to have
- // a "Volumes" key at the top level.
- return json.Marshal(map[string][]*ec2Types.Volume{
- "Volumes": volumes,
- })
- }
- func (aws *AWS) isDiskOrphaned(vol *ec2Types.Volume) bool {
- // Do not consider volume orphaned if in use
- if vol.State == InUseState {
- return false
- }
- // Do not consider volume orphaned if volume is attached to any attachments
- if len(vol.Attachments) != 0 {
- for _, attachment := range vol.Attachments {
- if attachment.State == AttachedState {
- return false
- }
- }
- }
- return true
- }
- func (aws *AWS) GetOrphanedResources() ([]models.OrphanedResource, error) {
- volumes, volumesErr := aws.getAllDisks()
- addresses, addressesErr := aws.getAllAddresses()
- // If we have any orphaned resources - prioritize returning them over returning errors
- if len(addresses) == 0 && len(volumes) == 0 {
- if volumesErr != nil {
- return nil, volumesErr
- }
- if addressesErr != nil {
- return nil, addressesErr
- }
- }
- var orphanedResources []models.OrphanedResource
- for _, volume := range volumes {
- if aws.isDiskOrphaned(volume) {
- cost, err := aws.findCostForDisk(volume)
- if err != nil {
- return nil, err
- }
- var volumeSize int64
- if volume.Size != nil {
- volumeSize = int64(*volume.Size)
- }
- // This is turning us-east-1a into us-east-1
- var zone string
- if volume.AvailabilityZone != nil {
- zone = *volume.AvailabilityZone
- }
- var region, url string
- region = regionRx.FindString(zone)
- if region != "" {
- url = "https://console.aws.amazon.com/ec2/home?region=" + region + "#Volumes:sort=desc:createTime"
- } else {
- url = "https://console.aws.amazon.com/ec2/home?#Volumes:sort=desc:createTime"
- }
- // output tags as desc
- tags := map[string]string{}
- for _, tag := range volume.Tags {
- tags[*tag.Key] = *tag.Value
- }
- or := models.OrphanedResource{
- Kind: "disk",
- Region: zone,
- Size: &volumeSize,
- DiskName: *volume.VolumeId,
- Url: url,
- MonthlyCost: cost,
- Description: tags,
- }
- orphanedResources = append(orphanedResources, or)
- }
- }
- for _, address := range addresses {
- if aws.isAddressOrphaned(address) {
- cost := AWSHourlyPublicIPCost * timeutil.HoursPerMonth
- desc := map[string]string{}
- for _, tag := range address.Tags {
- if tag.Key == nil {
- continue
- }
- if tag.Value == nil {
- desc[*tag.Key] = ""
- } else {
- desc[*tag.Key] = *tag.Value
- }
- }
- or := models.OrphanedResource{
- Kind: "address",
- Address: *address.PublicIp,
- Description: desc,
- Url: "http://console.aws.amazon.com/ec2/home?#Addresses",
- MonthlyCost: &cost,
- }
- orphanedResources = append(orphanedResources, or)
- }
- }
- return orphanedResources, nil
- }
- func (aws *AWS) findCostForDisk(disk *ec2Types.Volume) (*float64, error) {
- //todo: use AWS pricing from all regions
- if disk.AvailabilityZone == nil {
- return nil, fmt.Errorf("nil region")
- }
- if disk.Size == nil {
- return nil, fmt.Errorf("nil disk size")
- }
- class := volTypes[string(disk.VolumeType)]
- key := aws.ClusterRegion + "," + class
- pricing, ok := aws.Pricing[key]
- if !ok {
- return nil, fmt.Errorf("no pricing data for key '%s'", key)
- }
- if pricing == nil {
- return nil, fmt.Errorf("nil pricing data for key '%s'", key)
- }
- if pricing.PV == nil {
- return nil, fmt.Errorf("pricing for key '%s' has nil PV", key)
- }
- priceStr := pricing.PV.Cost
- price, err := strconv.ParseFloat(priceStr, 64)
- if err != nil {
- return nil, err
- }
- cost := price * timeutil.HoursPerMonth * float64(*disk.Size)
- return &cost, nil
- }
- // QueryAthenaPaginated executes athena query and processes results.
- func (aws *AWS) QueryAthenaPaginated(ctx context.Context, query string, fn func(*athena.GetQueryResultsOutput) bool) error {
- awsAthenaInfo, err := aws.GetAWSAthenaInfo()
- if err != nil {
- return err
- }
- if awsAthenaInfo.AthenaDatabase == "" || awsAthenaInfo.AthenaTable == "" || awsAthenaInfo.AthenaRegion == "" ||
- awsAthenaInfo.AthenaBucketName == "" || awsAthenaInfo.AccountID == "" {
- return fmt.Errorf("QueryAthenaPaginated: athena configuration incomplete")
- }
- queryExecutionCtx := &athenaTypes.QueryExecutionContext{
- Database: awsSDK.String(awsAthenaInfo.AthenaDatabase),
- }
- if awsAthenaInfo.AthenaCatalog != "" {
- queryExecutionCtx.Catalog = awsSDK.String(awsAthenaInfo.AthenaCatalog)
- }
- resultConfiguration := &athenaTypes.ResultConfiguration{
- OutputLocation: awsSDK.String(awsAthenaInfo.AthenaBucketName),
- }
- startQueryExecutionInput := &athena.StartQueryExecutionInput{
- QueryString: awsSDK.String(query),
- QueryExecutionContext: queryExecutionCtx,
- ResultConfiguration: resultConfiguration,
- }
- // Only set if there is a value, the default input is nil which defaults to the 'primary' workgroup
- if awsAthenaInfo.AthenaWorkgroup != "" {
- startQueryExecutionInput.WorkGroup = awsSDK.String(awsAthenaInfo.AthenaWorkgroup)
- }
- // Create Athena Client
- cfg, err := awsAthenaInfo.CreateConfig()
- if err != nil {
- log.Errorf("Could not retrieve Athena Configuration: %s", err.Error())
- }
- cli := athena.NewFromConfig(cfg)
- // Query Athena
- startQueryExecutionOutput, err := cli.StartQueryExecution(ctx, startQueryExecutionInput)
- if err != nil {
- return fmt.Errorf("QueryAthenaPaginated: start query error: %s", err.Error())
- }
- err = waitForQueryToComplete(ctx, cli, startQueryExecutionOutput.QueryExecutionId)
- if err != nil {
- return fmt.Errorf("QueryAthenaPaginated: query execution error: %s", err.Error())
- }
- queryResultsInput := &athena.GetQueryResultsInput{
- QueryExecutionId: startQueryExecutionOutput.QueryExecutionId,
- }
- getQueryResultsPaginator := athena.NewGetQueryResultsPaginator(cli, queryResultsInput)
- for getQueryResultsPaginator.HasMorePages() {
- pg, err := getQueryResultsPaginator.NextPage(ctx)
- if err != nil {
- log.Errorf("QueryAthenaPaginated: NextPage error: %s", err.Error())
- continue
- }
- fn(pg)
- }
- return nil
- }
- type SavingsPlanData struct {
- ResourceID string
- EffectiveCost float64
- SavingsPlanARN string
- MostRecentDate string
- }
- func (aws *AWS) GetSavingsPlanDataFromAthena() error {
- cfg, err := aws.GetConfig()
- if err != nil {
- aws.RIPricingError = err
- return err
- }
- if cfg.AthenaBucketName == "" {
- err = fmt.Errorf("No Athena Bucket configured")
- aws.RIPricingError = err
- return err
- }
- if aws.SavingsPlanDataByInstanceID == nil {
- aws.SavingsPlanDataByInstanceID = make(map[string]*SavingsPlanData)
- }
- tNow := time.Now()
- tOneDayAgo := tNow.Add(time.Duration(-25) * time.Hour) // Also get files from one day ago to avoid boundary conditions
- start := tOneDayAgo.Format("2006-01-02")
- end := tNow.Format("2006-01-02")
- // Use Savings Plan Effective Rate as an estimation for cost, assuming the 1h most recent period got a fully loaded savings plan.
- //
- q := `SELECT
- line_item_usage_start_date,
- savings_plan_savings_plan_a_r_n,
- line_item_resource_id,
- savings_plan_savings_plan_rate
- FROM %s as cost_data
- WHERE line_item_usage_start_date BETWEEN date '%s' AND date '%s'
- AND line_item_line_item_type = 'SavingsPlanCoveredUsage' ORDER BY
- line_item_usage_start_date DESC`
- page := 0
- processResults := func(op *athena.GetQueryResultsOutput) bool {
- if op == nil {
- log.Errorf("GetSavingsPlanDataFromAthena: Athena page is nil")
- return false
- } else if op.ResultSet == nil {
- log.Errorf("GetSavingsPlanDataFromAthena: Athena page.ResultSet is nil")
- return false
- }
- aws.SavingsPlanDataLock.Lock()
- aws.SavingsPlanDataByInstanceID = make(map[string]*SavingsPlanData) // Clean out the old data and only report a savingsplan price if its in the most recent run.
- mostRecentDate := ""
- iter := op.ResultSet.Rows
- if page == 0 && len(iter) > 0 {
- iter = op.ResultSet.Rows[1:len(op.ResultSet.Rows)]
- }
- page++
- for _, r := range iter {
- d := *r.Data[0].VarCharValue
- if mostRecentDate == "" {
- mostRecentDate = d
- } else if mostRecentDate != d { // Get all most recent assignments
- break
- }
- cost, err := strconv.ParseFloat(*r.Data[3].VarCharValue, 64)
- if err != nil {
- log.Infof("Error converting `%s` from float ", *r.Data[3].VarCharValue)
- }
- r := &SavingsPlanData{
- ResourceID: *r.Data[2].VarCharValue,
- EffectiveCost: cost,
- SavingsPlanARN: *r.Data[1].VarCharValue,
- MostRecentDate: d,
- }
- aws.SavingsPlanDataByInstanceID[r.ResourceID] = r
- }
- log.Debugf("Found %d savings plan applied instances", len(aws.SavingsPlanDataByInstanceID))
- for k, r := range aws.SavingsPlanDataByInstanceID {
- log.DedupedInfof(5, "Savings Plan Instance Data found for node %s : %f at time %s", k, r.EffectiveCost, r.MostRecentDate)
- }
- aws.SavingsPlanDataLock.Unlock()
- return true
- }
- query := fmt.Sprintf(q, cfg.AthenaTable, start, end)
- log.Debugf("Running Query: %s", query)
- err = aws.QueryAthenaPaginated(context.TODO(), query, processResults)
- if err != nil {
- aws.RIPricingError = err
- return fmt.Errorf("Error fetching Savings Plan Data: %s", err)
- }
- return nil
- }
- type RIData struct {
- ResourceID string
- EffectiveCost float64
- ReservationARN string
- MostRecentDate string
- }
- func (aws *AWS) GetReservationDataFromAthena() error {
- cfg, err := aws.GetConfig()
- if err != nil {
- aws.RIPricingError = err
- return err
- }
- if cfg.AthenaBucketName == "" {
- err = fmt.Errorf("No Athena Bucket configured")
- aws.RIPricingError = err
- return err
- }
- // Query for all column names in advance in order to validate configured
- // label columns
- columns, _ := aws.fetchColumns()
- if !columns["reservation_reservation_a_r_n"] || !columns["reservation_effective_cost"] {
- err = fmt.Errorf("no reservation data available in Athena")
- aws.RIPricingError = err
- return err
- }
- if aws.RIPricingByInstanceID == nil {
- aws.RIPricingByInstanceID = make(map[string]*RIData)
- }
- tNow := time.Now()
- tOneDayAgo := tNow.Add(time.Duration(-25) * time.Hour) // Also get files from one day ago to avoid boundary conditions
- start := tOneDayAgo.Format("2006-01-02")
- end := tNow.Format("2006-01-02")
- q := `SELECT
- line_item_usage_start_date,
- reservation_reservation_a_r_n,
- line_item_resource_id,
- reservation_effective_cost
- FROM %s as cost_data
- WHERE line_item_usage_start_date BETWEEN date '%s' AND date '%s'
- AND reservation_reservation_a_r_n <> '' ORDER BY
- line_item_usage_start_date DESC`
- page := 0
- processResults := func(op *athena.GetQueryResultsOutput) bool {
- if op == nil {
- log.Errorf("GetReservationDataFromAthena: Athena page is nil")
- return false
- } else if op.ResultSet == nil {
- log.Errorf("GetReservationDataFromAthena: Athena page.ResultSet is nil")
- return false
- }
- aws.RIDataLock.Lock()
- aws.RIPricingByInstanceID = make(map[string]*RIData) // Clean out the old data and only report a RI price if its in the most recent run.
- mostRecentDate := ""
- iter := op.ResultSet.Rows
- if page == 0 && len(iter) > 0 {
- iter = op.ResultSet.Rows[1:len(op.ResultSet.Rows)]
- }
- page++
- for _, r := range iter {
- d := *r.Data[0].VarCharValue
- if mostRecentDate == "" {
- mostRecentDate = d
- } else if mostRecentDate != d { // Get all most recent assignments
- break
- }
- cost, err := strconv.ParseFloat(*r.Data[3].VarCharValue, 64)
- if err != nil {
- log.Infof("Error converting `%s` from float ", *r.Data[3].VarCharValue)
- }
- r := &RIData{
- ResourceID: *r.Data[2].VarCharValue,
- EffectiveCost: cost,
- ReservationARN: *r.Data[1].VarCharValue,
- MostRecentDate: d,
- }
- aws.RIPricingByInstanceID[r.ResourceID] = r
- }
- log.Debugf("Found %d reserved instances", len(aws.RIPricingByInstanceID))
- for k, r := range aws.RIPricingByInstanceID {
- log.DedupedInfof(5, "Reserved Instance Data found for node %s : %f at time %s", k, r.EffectiveCost, r.MostRecentDate)
- }
- aws.RIDataLock.Unlock()
- return true
- }
- query := fmt.Sprintf(q, cfg.AthenaTable, start, end)
- log.Debugf("Running Query: %s", query)
- err = aws.QueryAthenaPaginated(context.TODO(), query, processResults)
- if err != nil {
- aws.RIPricingError = err
- return fmt.Errorf("Error fetching Reserved Instance Data: %s", err)
- }
- aws.RIPricingError = nil
- return nil
- }
- // fetchColumns returns a list of the names of all columns in the configured
- // Athena tables
- func (aws *AWS) fetchColumns() (map[string]bool, error) {
- columnSet := map[string]bool{}
- awsAthenaInfo, err := aws.GetAWSAthenaInfo()
- if err != nil {
- return nil, err
- }
- // This Query is supported by Athena tables and views
- q := `SELECT column_name FROM information_schema.columns WHERE table_schema = '%s' AND table_name = '%s'`
- query := fmt.Sprintf(q, awsAthenaInfo.AthenaDatabase, awsAthenaInfo.AthenaTable)
- pageNum := 0
- athenaErr := aws.QueryAthenaPaginated(context.TODO(), query, func(page *athena.GetQueryResultsOutput) bool {
- if page == nil {
- log.Errorf("fetchColumns: Athena page is nil")
- return false
- } else if page.ResultSet == nil {
- log.Errorf("fetchColumns: Athena page.ResultSet is nil")
- return false
- }
- // remove header row 'column_name'
- rows := page.ResultSet.Rows[1:]
- for _, row := range rows {
- columnSet[*row.Data[0].VarCharValue] = true
- }
- pageNum++
- return true
- })
- if athenaErr != nil {
- return columnSet, athenaErr
- }
- if len(columnSet) == 0 {
- log.Infof("No columns retrieved from Athena")
- }
- return columnSet, nil
- }
- type spotInfo struct {
- Timestamp string `csv:"Timestamp"`
- UsageType string `csv:"UsageType"`
- Operation string `csv:"Operation"`
- InstanceID string `csv:"InstanceID"`
- MyBidID string `csv:"MyBidID"`
- MyMaxPrice string `csv:"MyMaxPrice"`
- MarketPrice string `csv:"MarketPrice"`
- Charge string `csv:"Charge"`
- Version string `csv:"Version"`
- }
- func (aws *AWS) parseSpotData(bucket string, prefix string, projectID string, region string) (map[string]*spotInfo, error) {
- aws.ConfigureAuth() // configure aws api authentication by setting env vars
- s3Prefix := projectID
- if len(prefix) != 0 {
- s3Prefix = prefix + "/" + s3Prefix
- }
- aak, err := aws.GetAWSAccessKey()
- if err != nil {
- return nil, err
- }
- cfg, err := aak.CreateConfig(region)
- if err != nil {
- return nil, err
- }
- cli := s3.NewFromConfig(cfg)
- downloader := manager.NewDownloader(cli)
- tNow := time.Now()
- tOneDayAgo := tNow.Add(time.Duration(-24) * time.Hour) // Also get files from one day ago to avoid boundary conditions
- ls := &s3.ListObjectsInput{
- Bucket: awsSDK.String(bucket),
- Prefix: awsSDK.String(s3Prefix + "." + tOneDayAgo.Format("2006-01-02")),
- }
- ls2 := &s3.ListObjectsInput{
- Bucket: awsSDK.String(bucket),
- Prefix: awsSDK.String(s3Prefix + "." + tNow.Format("2006-01-02")),
- }
- lso, err := cli.ListObjects(context.TODO(), ls)
- if err != nil {
- aws.ServiceAccountChecks.Set("bucketList", &models.ServiceAccountCheck{
- Message: "Bucket List Permissions Available",
- Status: false,
- AdditionalInfo: err.Error(),
- })
- return nil, err
- } else {
- aws.ServiceAccountChecks.Set("bucketList", &models.ServiceAccountCheck{
- Message: "Bucket List Permissions Available",
- Status: true,
- })
- }
- lsoLen := len(lso.Contents)
- log.Debugf("Found %d spot data files from yesterday", lsoLen)
- if lsoLen == 0 {
- log.Debugf("ListObjects \"s3://%s/%s\" produced no keys", *ls.Bucket, *ls.Prefix)
- }
- lso2, err := cli.ListObjects(context.TODO(), ls2)
- if err != nil {
- return nil, err
- }
- lso2Len := len(lso2.Contents)
- log.Debugf("Found %d spot data files from today", lso2Len)
- if lso2Len == 0 {
- log.Debugf("ListObjects \"s3://%s/%s\" produced no keys", *ls2.Bucket, *ls2.Prefix)
- }
- // TODO: Worth it to use LastModifiedDate to determine if we should reparse the spot data?
- var keys []*string
- for _, obj := range lso.Contents {
- keys = append(keys, obj.Key)
- }
- for _, obj := range lso2.Contents {
- keys = append(keys, obj.Key)
- }
- header, err := csvutil.Header(spotInfo{}, "csv")
- if err != nil {
- return nil, err
- }
- fieldsPerRecord := len(header)
- spots := make(map[string]*spotInfo)
- for _, key := range keys {
- getObj := &s3.GetObjectInput{
- Bucket: awsSDK.String(bucket),
- Key: key,
- }
- buf := manager.NewWriteAtBuffer([]byte{})
- _, err := downloader.Download(context.TODO(), buf, getObj)
- if err != nil {
- aws.ServiceAccountChecks.Set("objectList", &models.ServiceAccountCheck{
- Message: "Object Get Permissions Available",
- Status: false,
- AdditionalInfo: err.Error(),
- })
- return nil, err
- } else {
- aws.ServiceAccountChecks.Set("objectList", &models.ServiceAccountCheck{
- Message: "Object Get Permissions Available",
- Status: true,
- })
- }
- r := bytes.NewReader(buf.Bytes())
- gr, err := gzip.NewReader(r)
- if err != nil {
- return nil, err
- }
- csvReader := csv.NewReader(gr)
- csvReader.Comma = '\t'
- csvReader.FieldsPerRecord = fieldsPerRecord
- dec, err := csvutil.NewDecoder(csvReader, header...)
- if err != nil {
- return nil, err
- }
- var foundVersion string
- for {
- spot := spotInfo{}
- err := dec.Decode(&spot)
- csvParseErr, isCsvParseErr := err.(*csv.ParseError)
- if err == io.EOF {
- break
- } else if err == csvutil.ErrFieldCount || (isCsvParseErr && csvParseErr.Err == csv.ErrFieldCount) {
- rec := dec.Record()
- // the first two "Record()" will be the comment lines
- // and they show up as len() == 1
- // the first of which is "#Version"
- // the second of which is "#Fields: "
- if len(rec) != 1 {
- log.Infof("Expected %d spot info fields but received %d: %s", fieldsPerRecord, len(rec), rec)
- continue
- }
- if len(foundVersion) == 0 {
- spotFeedVersion := rec[0]
- log.Debugf("Spot feed version is \"%s\"", spotFeedVersion)
- matches := versionRx.FindStringSubmatch(spotFeedVersion)
- if matches != nil {
- foundVersion = matches[1]
- if foundVersion != supportedSpotFeedVersion {
- log.Infof("Unsupported spot info feed version: wanted \"%s\" got \"%s\"", supportedSpotFeedVersion, foundVersion)
- break
- }
- }
- continue
- } else if strings.Index(rec[0], "#") == 0 {
- continue
- } else {
- log.Infof("skipping non-TSV line: %s", rec)
- continue
- }
- } else if err != nil {
- log.Warnf("Error during spot info decode: %+v", err)
- continue
- }
- log.DedupedInfof(5, "Found spot info for: %s", spot.InstanceID)
- spots[spot.InstanceID] = &spot
- }
- gr.Close()
- }
- return spots, nil
- }
- // ApplyReservedInstancePricing TODO
- func (aws *AWS) ApplyReservedInstancePricing(nodes map[string]*models.Node) {
- }
- func (aws *AWS) ServiceAccountStatus() *models.ServiceAccountStatus {
- return aws.ServiceAccountChecks.GetStatus()
- }
- func (aws *AWS) CombinedDiscountForNode(instanceType string, isPreemptible bool, defaultDiscount, negotiatedDiscount float64) float64 {
- return 1.0 - ((1.0 - defaultDiscount) * (1.0 - negotiatedDiscount))
- }
- // Regions returns a predefined list of AWS regions
- func (aws *AWS) Regions() []string {
- regionOverrides := ocenv.GetRegionOverrideList()
- if len(regionOverrides) > 0 {
- log.Debugf("Overriding AWS regions with configured region list: %+v", regionOverrides)
- return regionOverrides
- }
- return awsRegions
- }
- // 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 (aws *AWS) PricingSourceSummary() interface{} {
- // encode the pricing source summary as a JSON string
- return aws.Pricing
- }
|