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

Latest commit

 

History

History
30 lines (21 loc) · 1.15 KB

helm-install-params.md

File metadata and controls

30 lines (21 loc) · 1.15 KB

Helm Parameters

There are three different approaches for passing custom Helm config values into the Kubecost project:

  1. Pass exact parameters via --set command-line flags. For example, you can only pass a product key if that is all you need to configure.
  helm install kubecost/cost-analyzer --name kubecost --set kubecostProductConfigs.productKey.key="123" ...
  1. Pass exact parameters via custom values file Similar to option #1, you can create a separate values file that contains only the parameters needed.
  helm install kubecost/cost-analyzer --name kubecost --values values.yaml
 kubecostProductConfigs:
  productKey: 
    key: "123"
    enabled: true
  1. Use values.yaml from the Kubecost Helm Chart repository.

Note: Taking this approach means you may need to sync with the repo to use the latest release.

Edit this doc on GitHub