Skip to content
This repository has been archived by the owner on Feb 2, 2024. It is now read-only.

Latest commit

 

History

History
38 lines (26 loc) · 2.21 KB

custom-grafana.md

File metadata and controls

38 lines (26 loc) · 2.21 KB

Grafana Configuration Guide

Bring your own Grafana

Using an existing Grafana deployment can be accomplished with either of the following two options:

  1. Option: Directly link to an external Grafana. After Kubecost installation, visit Settings and update Grafana Address to a URL (e.g. http://demo.kubecost.com/grafana) that is visible to users accessing Grafana dashboards. This variable can alternatively be passed at the time you deploy Kubecost via the kubecostProductConfigs.grafanaURL parameter in values.yaml. Next, import Kubecost Grafana dashboards as JSON from this folder.

Kubecost Settings

  1. Option: Deploy with Grafana sidecar enabled. Passing the Grafana parameters below in your values.yaml will install ConfigMaps for Grafana dashboards that will be picked up by the Grafana sidecar if you have Grafana with the dashboard sidecar already installed.
global:
  grafana:
    enabled: false
    domainName: cost-analyzer-grafana.default #example where format is <service-name>.<namespace>
    proxy: false
grafana:
  sidecar:
    dashboards:
      enabled: true
    datasources:
      enabled: false

For Option 2, ensure that the following flags are set in your Operator deployment:

  1. sidecar.dashboards.enabled = true
  2. sidecar.dashboards.searchNamespace isn't restrictive, use ALL if Kubecost runs in another namespace.

Note that with Option 2, the Kubecost UI cannot link to the Grafana dashboards unless kubecostProductConfigs.grafanaURL is set, either via the Helm chart, or via the Settings page as described in Option 1.

Edit this doc on GitHub