| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453 |
- package cloud
- import (
- "context"
- "encoding/csv"
- "fmt"
- "io"
- "io/ioutil"
- "net/http"
- "net/url"
- "regexp"
- "strconv"
- "strings"
- "sync"
- "time"
- "github.com/kubecost/cost-model/pkg/log"
- "github.com/kubecost/cost-model/pkg/clustercache"
- "github.com/kubecost/cost-model/pkg/env"
- "github.com/kubecost/cost-model/pkg/kubecost"
- "github.com/kubecost/cost-model/pkg/util"
- "github.com/kubecost/cost-model/pkg/util/fileutil"
- "github.com/kubecost/cost-model/pkg/util/json"
- "github.com/Azure/azure-sdk-for-go/services/compute/mgmt/2017-09-01/skus"
- "github.com/Azure/azure-sdk-for-go/services/containerservice/mgmt/2018-03-31/containerservice"
- "github.com/Azure/azure-sdk-for-go/services/preview/commerce/mgmt/2015-06-01-preview/commerce"
- "github.com/Azure/azure-sdk-for-go/services/resources/mgmt/2016-06-01/subscriptions"
- "github.com/Azure/azure-sdk-for-go/services/resources/mgmt/2018-05-01/resources"
- "github.com/Azure/go-autorest/autorest"
- "github.com/Azure/go-autorest/autorest/azure"
- "github.com/Azure/go-autorest/autorest/azure/auth"
- v1 "k8s.io/api/core/v1"
- "k8s.io/klog"
- )
- const (
- AzureFilePremiumStorageClass = "premium_smb"
- AzureFileStandardStorageClass = "standard_smb"
- AzureDiskPremiumSSDStorageClass = "premium_ssd"
- AzureDiskStandardSSDStorageClass = "standard_ssd"
- AzureDiskStandardStorageClass = "standard_hdd"
- defaultSpotLabel = "kubernetes.azure.com/scalesetpriority"
- defaultSpotLabelValue = "spot"
- )
- var (
- regionCodeMappings = map[string]string{
- "ap": "asia",
- "au": "australia",
- "br": "brazil",
- "ca": "canada",
- "eu": "europe",
- "fr": "france",
- "in": "india",
- "ja": "japan",
- "kr": "korea",
- "uk": "uk",
- "us": "us",
- "za": "southafrica",
- "no": "norway",
- }
- //mtBasic, _ = regexp.Compile("^BASIC.A\\d+[_Promo]*$")
- //mtStandardA, _ = regexp.Compile("^A\\d+[_Promo]*$")
- mtStandardB, _ = regexp.Compile(`^Standard_B\d+m?[_v\d]*[_Promo]*$`)
- mtStandardD, _ = regexp.Compile(`^Standard_D\d[_v\d]*[_Promo]*$`)
- mtStandardE, _ = regexp.Compile(`^Standard_E\d+i?[_v\d]*[_Promo]*$`)
- mtStandardF, _ = regexp.Compile(`^Standard_F\d+[_v\d]*[_Promo]*$`)
- mtStandardG, _ = regexp.Compile(`^Standard_G\d+[_v\d]*[_Promo]*$`)
- mtStandardL, _ = regexp.Compile(`^Standard_L\d+[_v\d]*[_Promo]*$`)
- mtStandardM, _ = regexp.Compile(`^Standard_M\d+[m|t|l]*s[_v\d]*[_Promo]*$`)
- mtStandardN, _ = regexp.Compile(`^Standard_N[C|D|V]\d+r?[_v\d]*[_Promo]*$`)
- )
- // List obtained by installing the Azure CLI tool "az", described here:
- // https://docs.microsoft.com/en-us/cli/azure/install-azure-cli-linux?pivots=apt
- // logging into an Azure account, and running command `az account list-locations`
- var azureRegions = []string{
- "eastus",
- "eastus2",
- "southcentralus",
- "westus2",
- "westus3",
- "australiaeast",
- "southeastasia",
- "northeurope",
- "swedencentral",
- "uksouth",
- "westeurope",
- "centralus",
- "northcentralus",
- "westus",
- "southafricanorth",
- "centralindia",
- "eastasia",
- "japaneast",
- "jioindiawest",
- "koreacentral",
- "canadacentral",
- "francecentral",
- "germanywestcentral",
- "norwayeast",
- "switzerlandnorth",
- "uaenorth",
- "brazilsouth",
- "centralusstage",
- "eastusstage",
- "eastus2stage",
- "northcentralusstage",
- "southcentralusstage",
- "westusstage",
- "westus2stage",
- "asia",
- "asiapacific",
- "australia",
- "brazil",
- "canada",
- "europe",
- "france",
- "germany",
- "global",
- "india",
- "japan",
- "korea",
- "norway",
- "southafrica",
- "switzerland",
- "uae",
- "uk",
- "unitedstates",
- "eastasiastage",
- "southeastasiastage",
- "centraluseuap",
- "eastus2euap",
- "westcentralus",
- "southafricawest",
- "australiacentral",
- "australiacentral2",
- "australiasoutheast",
- "japanwest",
- "jioindiacentral",
- "koreasouth",
- "southindia",
- "westindia",
- "canadaeast",
- "francesouth",
- "germanynorth",
- "norwaywest",
- "switzerlandwest",
- "ukwest",
- "uaecentral",
- "brazilsoutheast",
- }
- const AzureLayout = "2006-01-02"
- var HeaderStrings = []string{"MeterCategory", "UsageDateTime", "InstanceId", "AdditionalInfo", "Tags", "PreTaxCost", "SubscriptionGuid", "ConsumedService", "ResourceGroup", "ResourceType"}
- var loadedAzureSecret bool = false
- var azureSecret *AzureServiceKey = nil
- var loadedAzureStorageConfigSecret bool = false
- var azureStorageConfig *AzureStorageConfig = nil
- type regionParts []string
- func (r regionParts) String() string {
- var result string
- for _, p := range r {
- result += p
- }
- return result
- }
- func getRegions(service string, subscriptionsClient subscriptions.Client, providersClient resources.ProvidersClient, subscriptionID string) (map[string]string, error) {
- allLocations := make(map[string]string)
- supLocations := make(map[string]string)
- // retrieve all locations for the subscription id (some of them may not be supported by the required provider)
- if locations, err := subscriptionsClient.ListLocations(context.TODO(), subscriptionID); err == nil {
- // fill up the map: DisplayName - > Name
- for _, loc := range *locations.Value {
- allLocations[*loc.DisplayName] = *loc.Name
- }
- } else {
- return nil, err
- }
- // identify supported locations for the namespace and resource type
- const (
- providerNamespaceForCompute = "Microsoft.Compute"
- resourceTypeForCompute = "locations/vmSizes"
- providerNamespaceForAks = "Microsoft.ContainerService"
- resourceTypeForAks = "managedClusters"
- )
- switch service {
- case "aks":
- if providers, err := providersClient.Get(context.TODO(), providerNamespaceForAks, ""); err == nil {
- for _, pr := range *providers.ResourceTypes {
- if *pr.ResourceType == resourceTypeForAks {
- for _, displName := range *pr.Locations {
- if loc, ok := allLocations[displName]; ok {
- supLocations[loc] = displName
- } else {
- klog.V(1).Infof("unsupported cloud region %s", loc)
- }
- }
- break
- }
- }
- } else {
- return nil, err
- }
- return supLocations, nil
- default:
- if providers, err := providersClient.Get(context.TODO(), providerNamespaceForCompute, ""); err == nil {
- for _, pr := range *providers.ResourceTypes {
- if *pr.ResourceType == resourceTypeForCompute {
- for _, displName := range *pr.Locations {
- if loc, ok := allLocations[displName]; ok {
- supLocations[loc] = displName
- } else {
- klog.V(1).Infof("unsupported cloud region %s", loc)
- }
- }
- break
- }
- }
- } else {
- return nil, err
- }
- return supLocations, nil
- }
- }
- func getRetailPrice(region string, skuName string, currencyCode string, spot bool) (string, error) {
- pricingURL := "https://prices.azure.com/api/retail/prices?$skip=0"
- if currencyCode != "" {
- pricingURL += fmt.Sprintf("¤cyCode='%s'", currencyCode)
- }
- var filterParams []string
- if region != "" {
- regionParam := fmt.Sprintf("armRegionName eq '%s'", region)
- filterParams = append(filterParams, regionParam)
- }
- if skuName != "" {
- skuNameParam := fmt.Sprintf("armSkuName eq '%s'", skuName)
- filterParams = append(filterParams, skuNameParam)
- }
- if len(filterParams) > 0 {
- filterParamsEscaped := url.QueryEscape(strings.Join(filterParams[:], " and "))
- pricingURL += fmt.Sprintf("&$filter=%s", filterParamsEscaped)
- }
- log.Infof("starting download retail price payload from \"%s\"", pricingURL)
- resp, err := http.Get(pricingURL)
- if err != nil {
- return "", fmt.Errorf("bogus fetch of \"%s\": %v", pricingURL, err)
- }
- if resp.StatusCode < 200 && resp.StatusCode > 299 {
- return "", fmt.Errorf("retail price responded with error status code %d", resp.StatusCode)
- }
- pricingPayload := AzureRetailPricing{}
- body, err := ioutil.ReadAll(resp.Body)
- if err != nil {
- return "", fmt.Errorf("Error getting response: %v", err)
- }
- jsonErr := json.Unmarshal(body, &pricingPayload)
- if jsonErr != nil {
- return "", fmt.Errorf("Error unmarshalling data: %v", jsonErr)
- }
- retailPrice := ""
- for _, item := range pricingPayload.Items {
- if item.Type == "Consumption" && !strings.Contains(item.ProductName, "Windows") {
- // if spot is true SkuName should contain "spot, if it is false it should not
- if spot == strings.Contains(strings.ToLower(item.SkuName), " spot") {
- retailPrice = fmt.Sprintf("%f", item.RetailPrice)
- }
- }
- }
- log.DedupedInfof(5, "done parsing retail price payload from \"%s\"\n", pricingURL)
- if retailPrice == "" {
- return retailPrice, fmt.Errorf("Couldn't find price for product \"%s\" in \"%s\" region", skuName, region)
- }
- return retailPrice, nil
- }
- func toRegionID(meterRegion string, regions map[string]string) (string, error) {
- var rp regionParts = strings.Split(strings.ToLower(meterRegion), " ")
- regionCode := regionCodeMappings[rp[0]]
- lastPart := rp[len(rp)-1]
- var regionIds []string
- if _, err := strconv.Atoi(lastPart); err == nil {
- regionIds = []string{
- fmt.Sprintf("%s%s%s", regionCode, rp[1:len(rp)-1], lastPart),
- fmt.Sprintf("%s%s%s", rp[1:len(rp)-1], regionCode, lastPart),
- }
- } else {
- regionIds = []string{
- fmt.Sprintf("%s%s", regionCode, rp[1:]),
- fmt.Sprintf("%s%s", rp[1:], regionCode),
- }
- }
- for _, regionID := range regionIds {
- if checkRegionID(regionID, regions) {
- return regionID, nil
- }
- }
- return "", fmt.Errorf("Couldn't find region")
- }
- func checkRegionID(regionID string, regions map[string]string) bool {
- for region := range regions {
- if regionID == region {
- return true
- }
- }
- return false
- }
- // AzureRetailPricing struct for unmarshalling Azure Retail pricing api JSON response
- type AzureRetailPricing struct {
- BillingCurrency string `json:"BillingCurrency"`
- CustomerEntityId string `json:"CustomerEntityId"`
- CustomerEntityType string `json:"CustomerEntityType"`
- Items []AzureRetailPricingAttributes `json:"Items"`
- NextPageLink string `json:"NextPageLink"`
- Count int `json:"Count"`
- }
- //AzureRetailPricingAttributes struct for unmarshalling Azure Retail pricing api JSON response
- type AzureRetailPricingAttributes struct {
- CurrencyCode string `json:"currencyCode"`
- TierMinimumUnits float32 `json:"tierMinimumUnits"`
- RetailPrice float32 `json:"retailPrice"`
- UnitPrice float32 `json:"unitPrice"`
- ArmRegionName string `json:"armRegionName"`
- Location string `json:"location"`
- EffectiveStartDate *time.Time `json:"effectiveStartDate"`
- EffectiveEndDate *time.Time `json:"effectiveEndDate"`
- MeterId string `json:"meterId"`
- MeterName string `json:"meterName"`
- ProductId string `json:"productId"`
- SkuId string `json:"skuId"`
- ProductName string `json:"productName"`
- SkuName string `json:"skuName"`
- ServiceName string `json:"serviceName"`
- ServiceId string `json:"serviceId"`
- ServiceFamily string `json:"serviceFamily"`
- UnitOfMeasure string `json:"unitOfMeasure"`
- Type string `json:"type"`
- IsPrimaryMeterRegion bool `json:"isPrimaryMeterRegion"`
- ArmSkuName string `json:"armSkuName"`
- }
- // AzurePricing either contains a Node or PV
- type AzurePricing struct {
- Node *Node
- PV *PV
- }
- type Azure struct {
- Pricing map[string]*AzurePricing
- DownloadPricingDataLock sync.RWMutex
- Clientset clustercache.ClusterCache
- Config *ProviderConfig
- ServiceAccountChecks map[string]*ServiceAccountCheck
- RateCardPricingError error
- clusterAccountId string
- clusterRegion string
- }
- type azureKey struct {
- Labels map[string]string
- GPULabel string
- GPULabelValue string
- }
- func (k *azureKey) Features() string {
- r, _ := util.GetRegion(k.Labels)
- region := strings.ToLower(r)
- instance, _ := util.GetInstanceType(k.Labels)
- usageType := "ondemand"
- return fmt.Sprintf("%s,%s,%s", region, instance, usageType)
- }
- // GPUType returns value of GPULabel if present
- func (k *azureKey) GPUType() string {
- if t, ok := k.Labels[k.GPULabel]; ok {
- return t
- }
- return ""
- }
- func (k *azureKey) isValidGPUNode() bool {
- return k.GPUType() == k.GPULabelValue && k.GetGPUCount() != "0"
- }
- func (k *azureKey) ID() string {
- return ""
- }
- func (k *azureKey) GetGPUCount() string {
- instance, _ := util.GetInstanceType(k.Labels)
- // Double digits that could get matches lower in logic
- if strings.Contains(instance, "NC64") {
- return "4"
- }
- if strings.Contains(instance, "ND96") ||
- strings.Contains(instance, "ND40") {
- return "8"
- }
- // Ordered asc because of some series have different gpu counts on different versions
- if strings.Contains(instance, "NC6") ||
- strings.Contains(instance, "NC4") ||
- strings.Contains(instance, "NC8") ||
- strings.Contains(instance, "NC16") ||
- strings.Contains(instance, "ND6") ||
- strings.Contains(instance, "NV12s") ||
- strings.Contains(instance, "NV6") {
- return "1"
- }
- if strings.Contains(instance, "NC12") ||
- strings.Contains(instance, "ND12") ||
- strings.Contains(instance, "NV24s") ||
- strings.Contains(instance, "NV12") {
- return "2"
- }
- if strings.Contains(instance, "NC24") ||
- strings.Contains(instance, "ND24") ||
- strings.Contains(instance, "NV48s") ||
- strings.Contains(instance, "NV24") {
- return "4"
- }
- return "0"
- }
- // Represents an azure storage config
- type AzureStorageConfig struct {
- SubscriptionId string `json:"azureSubscriptionID"`
- AccountName string `json:"azureStorageAccount"`
- AccessKey string `json:"azureStorageAccessKey"`
- ContainerName string `json:"azureStorageContainer"`
- }
- // Represents an azure app key
- type AzureAppKey struct {
- AppID string `json:"appId"`
- DisplayName string `json:"displayName"`
- Name string `json:"name"`
- Password string `json:"password"`
- Tenant string `json:"tenant"`
- }
- // Azure service key for a specific subscription
- type AzureServiceKey struct {
- SubscriptionID string `json:"subscriptionId"`
- ServiceKey *AzureAppKey `json:"serviceKey"`
- }
- // Validity check on service key
- func (ask *AzureServiceKey) IsValid() bool {
- return ask.SubscriptionID != "" &&
- ask.ServiceKey != nil &&
- ask.ServiceKey.AppID != "" &&
- ask.ServiceKey.Password != "" &&
- ask.ServiceKey.Tenant != ""
- }
- // Loads the azure authentication via configuration or a secret set at install time.
- func (az *Azure) getAzureAuth(forceReload bool, cp *CustomPricing) (subscriptionID, clientID, clientSecret, tenantID string) {
- // 1. Check config values first (set from frontend UI)
- if cp.AzureSubscriptionID != "" && cp.AzureClientID != "" && cp.AzureClientSecret != "" && cp.AzureTenantID != "" {
- subscriptionID = cp.AzureSubscriptionID
- clientID = cp.AzureClientID
- clientSecret = cp.AzureClientSecret
- tenantID = cp.AzureTenantID
- return
- }
- // 2. Check for secret
- s, _ := az.loadAzureAuthSecret(forceReload)
- if s != nil && s.IsValid() {
- subscriptionID = s.SubscriptionID
- clientID = s.ServiceKey.AppID
- clientSecret = s.ServiceKey.Password
- tenantID = s.ServiceKey.Tenant
- return
- }
- // 3. Empty values
- return "", "", "", ""
- }
- func (az *Azure) ConfigureAzureStorage() error {
- accessKey, accountName, containerName := az.getAzureStorageConfig(false)
- if accessKey != "" && accountName != "" && containerName != "" {
- err := env.Set(env.AzureStorageAccessKeyEnvVar, accessKey)
- if err != nil {
- return err
- }
- err = env.Set(env.AzureStorageAccountNameEnvVar, accountName)
- if err != nil {
- return err
- }
- err = env.Set(env.AzureStorageContainerNameEnvVar, containerName)
- if err != nil {
- return err
- }
- }
- return nil
- }
- func (az *Azure) getAzureStorageConfig(forceReload bool) (accessKey, accountName, containerName string) {
- if az.ServiceAccountChecks == nil {
- az.ServiceAccountChecks = make(map[string]*ServiceAccountCheck)
- }
- // 1. Check for secret
- s, _ := az.loadAzureStorageConfig(forceReload)
- if s != nil && s.AccessKey != "" && s.AccountName != "" && s.ContainerName != "" {
- az.ServiceAccountChecks["hasStorage"] = &ServiceAccountCheck{
- Message: "Azure Storage Config exists",
- Status: true,
- }
- accessKey = s.AccessKey
- accountName = s.AccountName
- containerName = s.ContainerName
- return
- }
- // 3. Fall back to env vars
- accessKey, accountName, containerName = env.GetAzureStorageAccessKey(), env.GetAzureStorageAccountName(), env.GetAzureStorageContainerName()
- if accessKey != "" && accountName != "" && containerName != "" {
- az.ServiceAccountChecks["hasStorage"] = &ServiceAccountCheck{
- Message: "Azure Storage Config exists",
- Status: true,
- }
- } else {
- az.ServiceAccountChecks["hasStorage"] = &ServiceAccountCheck{
- Message: "Azure Storage Config exists",
- Status: false,
- }
- }
- return
- }
- // 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 (az *Azure) loadAzureAuthSecret(force bool) (*AzureServiceKey, error) {
- if !force && loadedAzureSecret {
- return azureSecret, nil
- }
- loadedAzureSecret = true
- exists, err := fileutil.FileExists(authSecretPath)
- if !exists || err != nil {
- return nil, fmt.Errorf("Failed to locate service account file: %s", authSecretPath)
- }
- result, err := ioutil.ReadFile(authSecretPath)
- if err != nil {
- return nil, err
- }
- var ask AzureServiceKey
- err = json.Unmarshal(result, &ask)
- if err != nil {
- return nil, err
- }
- azureSecret = &ask
- return azureSecret, nil
- }
- // 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 (az *Azure) loadAzureStorageConfig(force bool) (*AzureStorageConfig, error) {
- if !force && loadedAzureStorageConfigSecret {
- return azureStorageConfig, nil
- }
- loadedAzureStorageConfigSecret = true
- exists, err := fileutil.FileExists(storageConfigSecretPath)
- if !exists || err != nil {
- return nil, fmt.Errorf("Failed to locate azure storage config file: %s", storageConfigSecretPath)
- }
- result, err := ioutil.ReadFile(storageConfigSecretPath)
- if err != nil {
- return nil, err
- }
- var ask AzureStorageConfig
- err = json.Unmarshal(result, &ask)
- if err != nil {
- return nil, err
- }
- azureStorageConfig = &ask
- return azureStorageConfig, nil
- }
- func (az *Azure) GetKey(labels map[string]string, n *v1.Node) Key {
- cfg, err := az.GetConfig()
- if err != nil {
- klog.Infof("Error loading azure custom pricing information")
- }
- // azure defaults, see https://docs.microsoft.com/en-us/azure/aks/gpu-cluster
- gpuLabel := "accelerator"
- gpuLabelValue := "nvidia"
- if cfg.GpuLabel != "" {
- gpuLabel = cfg.GpuLabel
- }
- if cfg.GpuLabelValue != "" {
- gpuLabelValue = cfg.GpuLabelValue
- }
- return &azureKey{
- Labels: labels,
- GPULabel: gpuLabel,
- GPULabelValue: gpuLabelValue,
- }
- }
- // CreateString builds strings effectively
- func createString(keys ...string) string {
- var b strings.Builder
- for _, key := range keys {
- b.WriteString(key)
- }
- return b.String()
- }
- func transformMachineType(subCategory string, mt []string) []string {
- switch {
- case strings.Contains(subCategory, "Basic"):
- return []string{createString("Basic_", mt[0])}
- case len(mt) == 2:
- return []string{createString("Standard_", mt[0]), createString("Standard_", mt[1])}
- default:
- return []string{createString("Standard_", mt[0])}
- }
- }
- func addSuffix(mt string, suffixes ...string) []string {
- result := make([]string, len(suffixes))
- var suffix string
- parts := strings.Split(mt, "_")
- if len(parts) > 2 {
- for _, p := range parts[2:] {
- suffix = createString(suffix, "_", p)
- }
- }
- for i, s := range suffixes {
- result[i] = createString(parts[0], "_", parts[1], s, suffix)
- }
- return result
- }
- func getMachineTypeVariants(mt string) []string {
- switch {
- case mtStandardB.MatchString(mt):
- return []string{createString(mt, "s")}
- case mtStandardD.MatchString(mt):
- var result []string
- result = append(result, addSuffix(mt, "s")[0])
- dsType := strings.Replace(mt, "Standard_D", "Standard_DS", -1)
- result = append(result, dsType)
- result = append(result, addSuffix(dsType, "-1", "-2", "-4", "-8")...)
- return result
- case mtStandardE.MatchString(mt):
- return addSuffix(mt, "s", "-2s", "-4s", "-8s", "-16s", "-32s")
- case mtStandardF.MatchString(mt):
- return addSuffix(mt, "s")
- case mtStandardG.MatchString(mt):
- var result []string
- gsType := strings.Replace(mt, "Standard_G", "Standard_GS", -1)
- result = append(result, gsType)
- return append(result, addSuffix(gsType, "-4", "-8", "-16")...)
- case mtStandardL.MatchString(mt):
- return addSuffix(mt, "s")
- case mtStandardM.MatchString(mt) && strings.HasSuffix(mt, "ms"):
- base := strings.TrimSuffix(mt, "ms")
- return addSuffix(base, "-2ms", "-4ms", "-8ms", "-16ms", "-32ms", "-64ms")
- case mtStandardM.MatchString(mt) && (strings.HasSuffix(mt, "ls") || strings.HasSuffix(mt, "ts")):
- return []string{}
- case mtStandardM.MatchString(mt) && strings.HasSuffix(mt, "s"):
- base := strings.TrimSuffix(mt, "s")
- return addSuffix(base, "", "m")
- case mtStandardN.MatchString(mt):
- return addSuffix(mt, "s")
- }
- return []string{}
- }
- func (az *Azure) GetManagementPlatform() (string, error) {
- nodes := az.Clientset.GetAllNodes()
- if len(nodes) > 0 {
- n := nodes[0]
- providerID := n.Spec.ProviderID
- if strings.Contains(providerID, "aks") {
- return "aks", nil
- }
- }
- return "", nil
- }
- // DownloadPricingData uses provided azure "best guesses" for pricing
- func (az *Azure) DownloadPricingData() error {
- az.DownloadPricingDataLock.Lock()
- defer az.DownloadPricingDataLock.Unlock()
- config, err := az.GetConfig()
- if err != nil {
- az.RateCardPricingError = err
- return err
- }
- // Load the service provider keys
- subscriptionID, clientID, clientSecret, tenantID := az.getAzureAuth(false, config)
- config.AzureSubscriptionID = subscriptionID
- config.AzureClientID = clientID
- config.AzureClientSecret = clientSecret
- config.AzureTenantID = tenantID
- var authorizer autorest.Authorizer
- if config.AzureClientID != "" && config.AzureClientSecret != "" && config.AzureTenantID != "" {
- credentialsConfig := auth.NewClientCredentialsConfig(config.AzureClientID, config.AzureClientSecret, config.AzureTenantID)
- a, err := credentialsConfig.Authorizer()
- if err != nil {
- az.RateCardPricingError = err
- return err
- }
- authorizer = a
- }
- if authorizer == nil {
- a, err := auth.NewAuthorizerFromEnvironment()
- authorizer = a
- if err != nil { // Failed to create authorizer from environment, try from file
- a, err := auth.NewAuthorizerFromFile(determineCloudByRegion(config.AzureBillingRegion).ResourceManagerEndpoint)
- if err != nil {
- az.RateCardPricingError = err
- return err
- }
- authorizer = a
- }
- }
- sClient := subscriptions.NewClient()
- sClient.Authorizer = authorizer
- rcClient := commerce.NewRateCardClient(config.AzureSubscriptionID)
- rcClient.Authorizer = authorizer
- skusClient := skus.NewResourceSkusClient(config.AzureSubscriptionID)
- skusClient.Authorizer = authorizer
- providersClient := resources.NewProvidersClient(config.AzureSubscriptionID)
- providersClient.Authorizer = authorizer
- containerServiceClient := containerservice.NewContainerServicesClient(config.AzureSubscriptionID)
- containerServiceClient.Authorizer = authorizer
- rateCardFilter := fmt.Sprintf("OfferDurableId eq 'MS-AZR-0003p' and Currency eq '%s' and Locale eq 'en-US' and RegionInfo eq '%s'", config.CurrencyCode, config.AzureBillingRegion)
- klog.Infof("Using ratecard query %s", rateCardFilter)
- result, err := rcClient.Get(context.TODO(), rateCardFilter)
- if err != nil {
- klog.Warningf("Error in pricing download query from API")
- az.RateCardPricingError = err
- return err
- }
- allPrices := make(map[string]*AzurePricing)
- regions, err := getRegions("compute", sClient, providersClient, config.AzureSubscriptionID)
- if err != nil {
- klog.Warningf("Error in pricing download regions from API")
- az.RateCardPricingError = err
- return err
- }
- baseCPUPrice := config.CPU
- for _, v := range *result.Meters {
- meterName := *v.MeterName
- meterRegion := *v.MeterRegion
- meterCategory := *v.MeterCategory
- meterSubCategory := *v.MeterSubCategory
- region, err := toRegionID(meterRegion, regions)
- if err != nil {
- continue
- }
- if !strings.Contains(meterSubCategory, "Windows") {
- if strings.Contains(meterCategory, "Storage") {
- if strings.Contains(meterSubCategory, "HDD") || strings.Contains(meterSubCategory, "SSD") || strings.Contains(meterSubCategory, "Premium Files") {
- var storageClass string = ""
- if strings.Contains(meterName, "P4 ") {
- storageClass = AzureDiskPremiumSSDStorageClass
- } else if strings.Contains(meterName, "E4 ") {
- storageClass = AzureDiskStandardSSDStorageClass
- } else if strings.Contains(meterName, "S4 ") {
- storageClass = AzureDiskStandardStorageClass
- } else if strings.Contains(meterName, "LRS Provisioned") {
- storageClass = AzureFilePremiumStorageClass
- }
- if storageClass != "" {
- var priceInUsd float64
- if len(v.MeterRates) < 1 {
- klog.V(1).Infof("missing rate info %+v", map[string]interface{}{"MeterSubCategory": *v.MeterSubCategory, "region": region})
- continue
- }
- for _, rate := range v.MeterRates {
- priceInUsd += *rate
- }
- // rate is in disk per month, resolve price per hour, then GB per hour
- pricePerHour := priceInUsd / 730.0 / 32.0
- priceStr := fmt.Sprintf("%f", pricePerHour)
- key := region + "," + storageClass
- klog.V(4).Infof("Adding PV.Key: %s, Cost: %s", key, priceStr)
- allPrices[key] = &AzurePricing{
- PV: &PV{
- Cost: priceStr,
- Region: region,
- },
- }
- }
- }
- }
- if strings.Contains(meterCategory, "Virtual Machines") {
- usageType := ""
- if !strings.Contains(meterName, "Low Priority") {
- usageType = "ondemand"
- } else {
- usageType = "preemptible"
- }
- var instanceTypes []string
- name := strings.TrimSuffix(meterName, " Low Priority")
- instanceType := strings.Split(name, "/")
- for _, it := range instanceType {
- if strings.Contains(meterSubCategory, "Promo") {
- it = it + " Promo"
- }
- instanceTypes = append(instanceTypes, strings.Replace(it, " ", "_", 1))
- }
- instanceTypes = transformMachineType(meterSubCategory, instanceTypes)
- if strings.Contains(name, "Expired") {
- instanceTypes = []string{}
- }
- var priceInUsd float64
- if len(v.MeterRates) < 1 {
- klog.V(1).Infof("missing rate info %+v", map[string]interface{}{"MeterSubCategory": *v.MeterSubCategory, "region": region})
- continue
- }
- for _, rate := range v.MeterRates {
- priceInUsd += *rate
- }
- priceStr := fmt.Sprintf("%f", priceInUsd)
- for _, instanceType := range instanceTypes {
- key := fmt.Sprintf("%s,%s,%s", region, instanceType, usageType)
- allPrices[key] = &AzurePricing{
- Node: &Node{
- Cost: priceStr,
- BaseCPUPrice: baseCPUPrice,
- UsageType: usageType,
- },
- }
- }
- }
- }
- }
- // There is no easy way of supporting Standard Azure-File, because it's billed per used GB
- // this will set the price to "0" as a workaround to not spam with `Persistent Volume pricing not found for` error
- // check https://github.com/kubecost/cost-model/issues/159 for more information (same problem on AWS)
- zeroPrice := "0.0"
- for region := range regions {
- key := region + "," + AzureFileStandardStorageClass
- klog.V(4).Infof("Adding PV.Key: %s, Cost: %s", key, zeroPrice)
- allPrices[key] = &AzurePricing{
- PV: &PV{
- Cost: zeroPrice,
- Region: region,
- },
- }
- }
- az.Pricing = allPrices
- az.RateCardPricingError = nil
- return nil
- }
- // determineCloudByRegion uses region name to pick the correct Cloud Environment for the azure provider to use
- func determineCloudByRegion(region string) azure.Environment{
- lcRegion := strings.ToLower(region)
- if strings.Contains(lcRegion, "china") {
- return azure.ChinaCloud
- }
- if strings.Contains(lcRegion, "gov") || strings.Contains(lcRegion, "dod") {
- return azure.USGovernmentCloud
- }
- // Default to public cloud
- return azure.PublicCloud
- }
- func (az *Azure) addPricing(features string, azurePricing *AzurePricing) {
- if az.Pricing == nil {
- az.Pricing = map[string]*AzurePricing{}
- }
- az.Pricing[features] = azurePricing
- }
- // AllNodePricing returns the Azure pricing objects stored
- func (az *Azure) AllNodePricing() (interface{}, error) {
- az.DownloadPricingDataLock.RLock()
- defer az.DownloadPricingDataLock.RUnlock()
- return az.Pricing, nil
- }
- // NodePricing returns Azure pricing data for a single node
- func (az *Azure) NodePricing(key Key) (*Node, error) {
- az.DownloadPricingDataLock.RLock()
- defer az.DownloadPricingDataLock.RUnlock()
- azKey, ok := key.(*azureKey)
- if !ok {
- return nil, fmt.Errorf("azure: NodePricing: key is of type %T", key)
- }
- config, _ := az.GetConfig()
- if slv, ok := azKey.Labels[config.SpotLabel]; ok && slv == config.SpotLabelValue && config.SpotLabel != "" && config.SpotLabelValue != "" {
- features := strings.Split(azKey.Features(), ",")
- region := features[0]
- instance := features[1]
- spotFeatures := fmt.Sprintf("%s,%s,%s", region, instance, "spot")
- if n, ok := az.Pricing[spotFeatures]; ok {
- log.DedupedInfof(5, "Returning pricing for node %s: %+v from key %s", azKey, n, spotFeatures)
- if azKey.isValidGPUNode() {
- n.Node.GPU = "1" // TODO: support multiple GPUs
- }
- return n.Node, nil
- }
- log.Infof("[Info] found spot instance, trying to get retail price for %s: %s, ", spotFeatures, azKey)
- spotCost, err := getRetailPrice(region, instance, config.CurrencyCode, true)
- if err != nil {
- log.DedupedWarningf(5, "failed to retrieve spot retail pricing")
- } else {
- gpu := ""
- if azKey.isValidGPUNode() {
- gpu = "1"
- }
- spotNode := &Node{
- Cost: spotCost,
- UsageType: "spot",
- GPU: gpu,
- }
- az.addPricing(spotFeatures, &AzurePricing{
- Node: spotNode,
- })
- return spotNode, nil
- }
- }
- if n, ok := az.Pricing[azKey.Features()]; ok {
- klog.V(4).Infof("Returning pricing for node %s: %+v from key %s", azKey, n, azKey.Features())
- if azKey.isValidGPUNode() {
- n.Node.GPU = azKey.GetGPUCount()
- }
- return n.Node, nil
- }
- klog.V(1).Infof("[Warning] no pricing data found for %s: %s", azKey.Features(), azKey)
- c, err := az.GetConfig()
- if err != nil {
- return nil, fmt.Errorf("No default pricing data available")
- }
- if azKey.isValidGPUNode() {
- return &Node{
- VCPUCost: c.CPU,
- RAMCost: c.RAM,
- UsesBaseCPUPrice: true,
- GPUCost: c.GPU,
- GPU: azKey.GetGPUCount(),
- }, nil
- }
- return &Node{
- VCPUCost: c.CPU,
- RAMCost: c.RAM,
- UsesBaseCPUPrice: true,
- }, nil
- }
- // Stubbed NetworkPricing for Azure. Pull directly from azure.json for now
- func (az *Azure) NetworkPricing() (*Network, error) {
- cpricing, err := az.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 &Network{
- ZoneNetworkEgressCost: znec,
- RegionNetworkEgressCost: rnec,
- InternetNetworkEgressCost: inec,
- }, nil
- }
- func (azr *Azure) LoadBalancerPricing() (*LoadBalancer, error) {
- fffrc := 0.025
- afrc := 0.010
- lbidc := 0.008
- numForwardingRules := 1.0
- dataIngressGB := 0.0
- var totalCost float64
- if numForwardingRules < 5 {
- totalCost = fffrc*numForwardingRules + lbidc*dataIngressGB
- } else {
- totalCost = fffrc*5 + afrc*(numForwardingRules-5) + lbidc*dataIngressGB
- }
- return &LoadBalancer{
- Cost: totalCost,
- }, nil
- }
- type azurePvKey struct {
- Labels map[string]string
- StorageClass string
- StorageClassParameters map[string]string
- DefaultRegion string
- ProviderId string
- }
- func (az *Azure) GetPVKey(pv *v1.PersistentVolume, parameters map[string]string, defaultRegion string) PVKey {
- providerID := ""
- if pv.Spec.AzureDisk != nil {
- providerID = pv.Spec.AzureDisk.DiskName
- }
- return &azurePvKey{
- Labels: pv.Labels,
- StorageClass: pv.Spec.StorageClassName,
- StorageClassParameters: parameters,
- DefaultRegion: defaultRegion,
- ProviderId: providerID,
- }
- }
- func (key *azurePvKey) ID() string {
- return key.ProviderId
- }
- func (key *azurePvKey) GetStorageClass() string {
- return key.StorageClass
- }
- func (key *azurePvKey) Features() string {
- storageClass := key.StorageClassParameters["storageaccounttype"]
- storageSKU := key.StorageClassParameters["skuName"]
- if storageClass != "" {
- if strings.EqualFold(storageClass, "Premium_LRS") {
- storageClass = AzureDiskPremiumSSDStorageClass
- } else if strings.EqualFold(storageClass, "StandardSSD_LRS") {
- storageClass = AzureDiskStandardSSDStorageClass
- } else if strings.EqualFold(storageClass, "Standard_LRS") {
- storageClass = AzureDiskStandardStorageClass
- }
- } else {
- if strings.EqualFold(storageSKU, "Premium_LRS") {
- storageClass = AzureFilePremiumStorageClass
- } else if strings.EqualFold(storageSKU, "Standard_LRS") {
- storageClass = AzureFileStandardStorageClass
- }
- }
- if region, ok := util.GetRegion(key.Labels); ok {
- return region + "," + storageClass
- }
- return key.DefaultRegion + "," + storageClass
- }
- func (*Azure) GetAddresses() ([]byte, error) {
- return nil, nil
- }
- func (*Azure) GetDisks() ([]byte, error) {
- return nil, nil
- }
- func (az *Azure) ClusterInfo() (map[string]string, error) {
- remoteEnabled := env.IsRemoteEnabled()
- m := make(map[string]string)
- m["name"] = "Azure Cluster #1"
- c, err := az.GetConfig()
- if err != nil {
- return nil, err
- }
- if c.ClusterName != "" {
- m["name"] = c.ClusterName
- }
- m["provider"] = "azure"
- m["account"] = az.clusterAccountId
- m["region"] = az.clusterRegion
- m["remoteReadEnabled"] = strconv.FormatBool(remoteEnabled)
- m["id"] = env.GetClusterID()
- return m, nil
- }
- func (az *Azure) UpdateConfigFromConfigMap(a map[string]string) (*CustomPricing, error) {
- return az.Config.UpdateFromMap(a)
- }
- func (az *Azure) UpdateConfig(r io.Reader, updateType string) (*CustomPricing, error) {
- defer az.DownloadPricingData()
- return az.Config.Update(func(c *CustomPricing) error {
- a := make(map[string]interface{})
- err := json.NewDecoder(r).Decode(&a)
- if err != nil {
- return err
- }
- for k, v := range a {
- kUpper := strings.Title(k) // Just so we consistently supply / receive the same values, uppercase the first letter.
- vstr, ok := v.(string)
- if ok {
- err := SetCustomPricingField(c, kUpper, vstr)
- if err != nil {
- return err
- }
- } else {
- return fmt.Errorf("type error while updating config for %s", kUpper)
- }
- }
- if env.IsRemoteEnabled() {
- err := UpdateClusterMeta(env.GetClusterID(), c.ClusterName)
- if err != nil {
- return err
- }
- }
- return nil
- })
- }
- func (az *Azure) GetConfig() (*CustomPricing, error) {
- c, err := az.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 = "USD"
- }
- if c.AzureBillingRegion == "" {
- c.AzureBillingRegion = "US"
- }
- if c.ShareTenancyCosts == "" {
- c.ShareTenancyCosts = defaultShareTenancyCost
- }
- if c.SpotLabel == "" {
- c.SpotLabel = defaultSpotLabel
- }
- if c.SpotLabelValue == "" {
- c.SpotLabelValue = defaultSpotLabelValue
- }
- return c, nil
- }
- // ExternalAllocations represents tagged assets outside the scope of kubernetes.
- // "start" and "end" are dates of the format YYYY-MM-DD
- // "aggregator" is the tag used to determine how to allocate those assets, ie namespace, pod, etc.
- func (az *Azure) ExternalAllocations(start string, end string, aggregators []string, filterType string, filterValue string, crossCluster bool) ([]*OutOfClusterAllocation, error) {
- var csvRetriever CSVRetriever = AzureCSVRetriever{}
- err := az.ConfigureAzureStorage() // load Azure Storage config
- if err != nil {
- return nil, err
- }
- return getExternalAllocations(start, end, aggregators, filterType, filterValue, crossCluster, csvRetriever)
- }
- func getExternalAllocations(start string, end string, aggregators []string, filterType string, filterValue string, crossCluster bool, csvRetriever CSVRetriever) ([]*OutOfClusterAllocation, error) {
- dateFormat := "2006-1-2"
- startTime, err := time.Parse(dateFormat, start)
- if err != nil {
- return nil, err
- }
- endTime, err := time.Parse(dateFormat, end)
- if err != nil {
- return nil, err
- }
- readers, err := csvRetriever.GetCSVReaders(startTime, endTime)
- if err != nil {
- return nil, err
- }
- oocAllocs := make(map[string]*OutOfClusterAllocation)
- for _, reader := range readers {
- err = parseCSV(reader, startTime, endTime, oocAllocs, aggregators, filterType, filterValue, crossCluster)
- if err != nil {
- return nil, err
- }
- }
- var oocAllocsArr []*OutOfClusterAllocation
- for _, alloc := range oocAllocs {
- oocAllocsArr = append(oocAllocsArr, alloc)
- }
- return oocAllocsArr, nil
- }
- func parseCSV(reader *csv.Reader, start, end time.Time, oocAllocs map[string]*OutOfClusterAllocation, aggregators []string, filterType string, filterValue string, crossCluster bool) error {
- headers, _ := reader.Read()
- headerMap := createHeaderMap(headers)
- for {
- var record, err = reader.Read()
- if err == io.EOF {
- break
- }
- if err != nil {
- return err
- }
- meterCategory := record[headerMap["MeterCategory"]]
- category := selectCategory(meterCategory)
- usageDateTime, err := time.Parse(AzureLayout, record[headerMap["UsageDateTime"]])
- if err != nil {
- klog.Errorf("failed to parse usage date: '%s'", record[headerMap["UsageDateTime"]])
- continue
- }
- // Ignore VM's and Storage Items for now
- if category == kubecost.ComputeCategory || category == kubecost.StorageCategory || !isValidUsageDateTime(start, end, usageDateTime) {
- continue
- }
- itemCost, err := strconv.ParseFloat(record[headerMap["PreTaxCost"]], 64)
- if err != nil {
- klog.Infof("failed to parse cost: '%s'", record[headerMap["PreTaxCost"]])
- continue
- }
- itemTags := make(map[string]string)
- itemTagJson := makeValidJSON(record[headerMap["Tags"]])
- if itemTagJson != "" {
- err = json.Unmarshal([]byte(itemTagJson), &itemTags)
- if err != nil {
- klog.Infof("Could not parse item tags %v", err)
- }
- }
- if filterType != "kubernetes_" {
- if value, ok := itemTags[filterType]; !ok || value != filterValue {
- continue
- }
- }
- environment := ""
- for _, agg := range aggregators {
- if tag, ok := itemTags[agg]; ok {
- environment = tag // just set to the first nonempty match
- break
- }
- }
- key := environment + record[headerMap["ConsumedService"]]
- if alloc, ok := oocAllocs[key]; ok {
- alloc.Cost += itemCost
- } else {
- ooc := &OutOfClusterAllocation{
- Aggregator: strings.Join(aggregators, ","),
- Environment: environment,
- Service: record[headerMap["ConsumedService"]],
- Cost: itemCost,
- }
- oocAllocs[key] = ooc
- }
- }
- return nil
- }
- func createHeaderMap(headers []string) map[string]int {
- headerMap := make(map[string]int)
- for i, header := range headers {
- for _, headerString := range HeaderStrings {
- if strings.Contains(header, headerString) {
- headerMap[headerString] = i
- }
- }
- }
- return headerMap
- }
- func makeValidJSON(jsonString string) string {
- if jsonString == "" || (jsonString[0] == '{' && jsonString[len(jsonString)-1] == '}') {
- return jsonString
- }
- return fmt.Sprintf("{%v}", jsonString)
- }
- // UsageDateTime only contains date information and not time because of this filtering usageDate time is inclusive on start and exclusive on end
- func isValidUsageDateTime(start, end, usageDateTime time.Time) bool {
- return (usageDateTime.After(start) || usageDateTime.Equal(start)) && usageDateTime.Before(end)
- }
- func getStartAndEndTimes(usageDateTime time.Time) (time.Time, time.Time) {
- start := time.Date(usageDateTime.Year(), usageDateTime.Month(), usageDateTime.Day(), 0, 0, 0, 0, usageDateTime.Location())
- end := time.Date(usageDateTime.Year(), usageDateTime.Month(), usageDateTime.Day(), 23, 59, 59, 999999999, usageDateTime.Location())
- return start, end
- }
- func selectCategory(meterCategory string) string {
- if meterCategory == "Virtual Machines" {
- return kubecost.ComputeCategory
- } else if meterCategory == "Storage" {
- return kubecost.StorageCategory
- } else if meterCategory == "Load Balancer" || meterCategory == "Bandwidth" {
- return kubecost.NetworkCategory
- } else {
- return kubecost.OtherCategory
- }
- }
- func (az *Azure) ApplyReservedInstancePricing(nodes map[string]*Node) {
- }
- func (az *Azure) PVPricing(pvk PVKey) (*PV, error) {
- az.DownloadPricingDataLock.RLock()
- defer az.DownloadPricingDataLock.RUnlock()
- pricing, ok := az.Pricing[pvk.Features()]
- if !ok {
- klog.V(4).Infof("Persistent Volume pricing not found for %s: %s", pvk.GetStorageClass(), pvk.Features())
- return &PV{}, nil
- }
- return pricing.PV, nil
- }
- func (az *Azure) GetLocalStorageQuery(window, offset time.Duration, rate bool, used bool) string {
- return ""
- }
- func (az *Azure) ServiceAccountStatus() *ServiceAccountStatus {
- checks := []*ServiceAccountCheck{}
- for _, v := range az.ServiceAccountChecks {
- checks = append(checks, v)
- }
- return &ServiceAccountStatus{
- Checks: checks,
- }
- }
- const rateCardPricingSource = "Rate Card API"
- // PricingSourceStatus returns the status of the rate card api
- func (az *Azure) PricingSourceStatus() map[string]*PricingSource {
- sources := make(map[string]*PricingSource)
- errMsg := ""
- if az.RateCardPricingError != nil {
- errMsg = az.RateCardPricingError.Error()
- }
- rcps := &PricingSource{
- Name: rateCardPricingSource,
- Error: errMsg,
- }
- if rcps.Error != "" {
- rcps.Available = false
- } else if len(az.Pricing) == 0 {
- rcps.Error = "No Pricing Data Available"
- rcps.Available = false
- } else {
- rcps.Available = true
- }
- sources[rateCardPricingSource] = rcps
- return sources
- }
- func (*Azure) ClusterManagementPricing() (string, float64, error) {
- return "", 0.0, nil
- }
- func (az *Azure) CombinedDiscountForNode(instanceType string, isPreemptible bool, defaultDiscount, negotiatedDiscount float64) float64 {
- return 1.0 - ((1.0 - defaultDiscount) * (1.0 - negotiatedDiscount))
- }
- func (az *Azure) Regions() []string {
- return azureRegions
- }
- func parseAzureSubscriptionID(id string) string {
- // azure:///subscriptions/0badafdf-1234-abcd-wxyz-123456789/...
- // => 0badafdf-1234-abcd-wxyz-123456789
- rx := regexp.MustCompile("azure:///subscriptions/([^/]*)/*")
- match := rx.FindStringSubmatch(id)
- if len(match) >= 2 {
- return match[1]
- }
- // Return empty string if an account could not be parsed from provided string
- return ""
- }
|