2
0

Cross-cloud cost allocation models for Kubernetes workloads https://kubecost.com

Ajay Tripathy 2f9dd2a575 Update README.md 7 жил өмнө
cloud fc94bc5f8a add split files 7 жил өмнө
costmodel 56ba586946 remove committed vendored stuff in favor of go modules. 7 жил өмнө
kubernetes 2fb1740002 clarify endpoint variable format 7 жил өмнө
Dockerfile 4bedd090a0 Add certs back to dockerfile. Fixes #5 7 жил өмнө
LICENSE e21bf66dc1 Add LICENSE 7 жил өмнө
README.md 2f9dd2a575 Update README.md 7 жил өмнө
allocation-dashboard.png 4f9b246c1e Add files via upload 7 жил өмнө
go.mod 56ba586946 remove committed vendored stuff in favor of go modules. 7 жил өмнө
go.sum 56ba586946 remove committed vendored stuff in favor of go modules. 7 жил өмнө
main.go 4cb422a1b4 add files 7 жил өмнө

README.md

Kubecost models give teams visibility into current and historical Kubernetes spend and resource allocation. These models provide cost transparency in Kubernetes environments that support multiple applications, teams, departments, etc.

Kubecost dashboard

To see more on the functionality of the full Kubecost product, please visit the features page on our website. Here is a summary of features enabled by this cost model:

  • Real-time cost allocation for native Kubernetes concepts: service, deployment, namespace, label, daemonset, pod, container, and more
  • Dynamic asset pricing enabled by integrations with AWS and GCP billing APIs, estimates for Azure
  • Supports on-prem k8s clusters with custom pricing sheets
  • Allocation for in-cluster resources like CPU, GPU, memory, and persistent volumes.
  • Allocation for out-of-cluster resources like RDS instances and S3 buckets with key (AWS only today)
  • Free and open source distribution (Apache2 license)

Requirements

  • Kubernetes version 1.8 or higher
  • kube-state-metrics
  • Node exporter
  • Prometheus

Installation

You can run Kubecost models on any Kubernetes 1.8+ cluster in a matter of minutes, if not seconds. The recommended way to install the Kubecost cost model (along with dashboards) is with the Helm chart install on our website. Note that this Helm installation also contains closed source dashboards today, but they are provided free for evaluation purposes.

Compared to building from source, this is faster and includes all necessary dependencies. The Kubecost cost model is also available as a container (kubecost/cost-model) and you can deploy run the Golang code yourself as described in the section below.

Deploying as a pod

If you want to just run the cost model (w/o dashboards) directly on your cluster, complete the following steps:

  1. Set this environment variable to the address of your prometheus server
  2. kubectl create namespace cost-model
  3. kubectl apply -f kubernetes/ --namespace cost-model
  4. kubectl port-forward --namespace cost-model service/cost-model 9003

To test that the server is running, you can hit http://localhost:9003/costDataModel?timeWindow=1d

Note: the following dependencies mentioned above are required for this installation path.

Contributing

We welcome any contributions to the project! To test, you'll need to build the cost-model docker container then push it to a kubernetes cluster with a running prometheus.

  1. docker build --rm -f "Dockerfile" -t <repo>/kubecost-cost-model:<tag> .
  2. Edit the pulled image in the deployment.yaml to /kubecost-cost-model:
  3. Set this environment variable to the address of your prometheus server
  4. kubectl create namespace cost-model
  5. kubectl apply -f kubernetes/ --namespace cost-model
  6. kubectl port-forward --namespace cost-model service/cost-model 9003
  7. Licensing

    Licensed under the Apache License, Version 2.0 (the "License")

    ## Software stack

    Golang application. Prometheus. Kubernetes.

    Questions

    How do we allocate RAM/CPU costs for a node when this data isn’t provided by a cloud provider (e.g. EC2 worker nodes)?

    Kubecost models start by pegging to a CPU price for this machine (currently depends on spot/preemptible vs ondemand). This CPU price value is also customizable. The price of RAM is then determined by the total node cost less the total price of all CPUs (i.e. # of CPUs attached to the node multiplied by the per CPU price). The value of both are then normalized to ensure RAM + CPU costs are never greater than the total price of the node.

    CPUHourlyCost = CONFIGURABLE_CPU_PRICE (if not directly supplied by Cloud provider)
    
    RAMGBHourlyCost = TOTAL_NODE_COST - CPUHourlyCost * # of CPUS
    

    How do we allocate RAM/CPU to an individual pod or container?

    Resources are allocated based on the maximum of Request and Usage time-weighted for the measured period. For pods with BestEffort quality of service (i.e. no requests) allocation is done solely on resource usage.

    How do I set my AWS spot bids for allocation?

    Modify spotCPU and spotRAM in default.json to the price of your bid. Allocation will use these bid prices, but does not take into account what you are actually charged.

    Do I need a GCP billing API key?

    We supply a global key with a low limit for evaluation, but you will want to supply your own before moving to production.

    Please reach out with any additional questions on Slack or via email at team@kubecost.com.