This documentation provides instructions for installing the FinOps Stack in Kind cluster for a quick setup.
For deployment on a GKE cluster, refer to the GKE docs and deployment on a EKS cluster refer to the EKS docs.
Installing Helm charts with lots of dependencies and CRDs is challenging; these instructions use Helmfile to mitigate issues with Helm.
make cluster
- To control which Finops Stack components to install, edit the enabled.yaml file
- Copy env.tmpl file and replace the env var values accordingly (
GRAFANA_FQDN
for example).
cp ./env.tmpl ./.env
For the first run:
make finops-stack
# FinOps stack is install using Helmfile:
# set -a; source .env; set +a; helmfile apply --file helmfile_kind.yaml --interactive
NOTE: it will take several minutes for all workloads to install and start running. Helmfile does display its progress in the terminal. All workloads get installed into the finops-stack
namespace so you can also view progress using kubectl
.
To speed up subsequent runs:
set -a; source .env; set +a; helmfile apply --interactive --skip-deps
Already have an FQDN setup and registered with a public IP, e.g. grafana.example.com
These are specified in config/common/grafana-values.yaml
, config/gke/grafana-values.yaml
and under the Grafana release in helmfile.yaml
. Probably all the changes you will want to make can be done by changing the values in helmfile.yaml
, e.g. the admin user and what type of ingress you require.
General guidance when configuring ingress:
- Update the
.env
file with the FQDN and public IP for you domain. - If you wish to enable tls, then ensure that cert-manager.enabled is set to true and update the values in
.env
accordingly.
For Goldilocks to analyse namespaces and add then to its dashboard you need to add this label to the namespace resource: goldilocks.fairwinds.com/enabled=true
, e.g:
kubectl label ns finops-stack goldilocks.fairwinds.com/enabled=true
To port forward to Grafana:
kubectl --namespace finops-stack port-forward service/grafana 3000:80
Access via http://localhost:3000
To port forward to the metrics endpoint of the Opencost Prometheus exporter (to examine what metrics are being scraped):
kubectl --namespace finops-stack port-forward service/prometheus-opencost-exporter 9003:9003
To access the Goldilocks dashboard (assuming you've enabled it):
kubectl -n finops-stack port-forward svc/goldilocks-dashboard 8080:80
Then goto http://localhost:8080