forked from deliveryhero/helm-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalues.yaml
46 lines (42 loc) · 1.33 KB
/
values.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Default values for kubecost-reports-exporter.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
schedule: "0 * * * *"
restartPolicy: OnFailure
successfulJobsHistoryLimit: 1
concurrencyPolicy: Forbid
image:
repository: thomasnyambati/kubecost-reports-exporter
pullPolicy: IfNotPresent
imagePullSecrets: []
nameOverride: ""
fullnameOverride: ""
serviceAccount:
create: false
name: ""
annotations: {}
podAnnotations: {}
podSecurityContext: {}
securityContext: {}
resources: {}
nodeSelector: {}
tolerations: []
affinity: {}
kubecost:
# kubecost.logLevel -- exporter log level.
logLevel: info
# kubecost.clusterName -- Name of the cluster
clusterName: change_me
# kubecost.bucketName -- S3 Bucket name for reports export
bucketName: kubecost-reports-exporter
# kubecost.aggregatedCostUrl -- Url for aggregated cost report
aggregatedCostUrl: "/model/aggregatedCostModel?window=1d&aggregation=namespace"
# kubecost.nonAggregatedCostUrl -- Url for non-aggregated cost report
nonAggregatedCostUrl: "/model/costDataModel?timeWindow=1d&offset=1d"
clusters:
# kubecost.clusters.0.name -- kubecost cluster name
- name: default
# kubecost.clusters.endpoint -- kubecost analyzer endpoint
endpoint: "http://kubecost-cost-analyzer:9090"
# env -- Extra environment variables
env: {}