Thanks for your help improving the project!
If you have a question about Kubecost or have encountered problems using it, you can start by asking a question on Slack or via email at [email protected]
Follow these steps to build from source and deploy:
docker build --rm -f "Dockerfile" -t <repo>/kubecost-cost-model:<tag> .
- Edit the pulled image in the deployment.yaml to /kubecost-cost-model:
- Set this environment variable to the address of your prometheus server
kubectl create namespace cost-model
kubectl apply -f kubernetes/ --namespace cost-model
kubectl port-forward --namespace cost-model service/cost-model 9003
To test, build the cost-model docker container and then push it to a Kubernetes cluster with a running Prometheus.
To confirm that the server is running, you can hit http://localhost:9003/costDataModel?timeWindow=1d
To run these tests:
- Make sure you have a kubeconfig that can point to your cluster, and have permissions to create/modify a namespace called "test"
- Connect to your the prometheus kubecost emits to on localhost:9003:
kubectl port-forward --namespace kubecost service/kubecost-prometheus-server 9003:80
- Temporary workaround: Copy the default.json file in this project at cloud/default.json to /models/default.json on the machine your test is running on. TODO: fix this and inject the cloud/default.json path into provider.go.
- Navigate to cost-model/test
- Run
go test -timeout 700s
from the testing directory. The tests right now take about 10 minutes (600s) to run because they bring up and down pods and wait for Prometheus to scrape data about them.
By contributing to this project you certify that your contribution was created in whole or in part by you and that you have the right to submit it under the open source license indicated in the project. In other words, please confirm that you, as a contributor, have the legal right to make the contribution.
Please write a commit message with Fixes Issue # if there is an outstanding issue that is fixed. It’s okay to submit a PR without a corresponding issue, just please try be detailed in the description about the problem you’re addressing.
Please run go fmt on the project directory. Lint can be okay (for example, comments on exported functions are nice but not required on the server).
Please email us ([email protected]) or reach out to us on Slack if you need help or have any questions!