Skip to content

Commit

Permalink
Set up helm param disabled by default (kubecost#2030)
Browse files Browse the repository at this point in the history
  • Loading branch information
biancaburtoiu authored Mar 8, 2023
1 parent 8513327 commit 5961ab5
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -933,6 +933,10 @@ spec:
- name: GOOGLE_ANALYTICS_TAG
value: {{ .Values.reporting.googleAnalyticsTag }}
{{- end }}
{{- if .Values.costEventsAudit }}
- name: COST_EVENTS_AUDIT_ENABLED
value: {{ (quote .Values.costEventsAudit.enabled) | default (quote false) }}
{{- end }}
{{- /*
Leader/Follower has baseline requirements before enabling:
* ETL FileStore Enabled
Expand Down
7 changes: 7 additions & 0 deletions cost-analyzer/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -857,6 +857,13 @@ federatedETL:
kubecostAdmissionController:
enabled: false

# Enables or disables the Cost Event Audit pipeline, which tracks recent changes at cluster level
# and provides an estimated cost impact via the Kubecost Predict API.
#
# It is disabled by default to avoid problems in high-scale environments.
costEventsAudit:
enabled: false

# readonly: false # disable updates to kubecost from the frontend UI and via POST request

# These configs can also be set from the Settings page in the Kubecost product UI
Expand Down

0 comments on commit 5961ab5

Please sign in to comment.