forked from deliveryhero/helm-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvalues.yaml
More file actions
52 lines (48 loc) · 1.62 KB
/
Copy pathvalues.yaml
File metadata and controls
52 lines (48 loc) · 1.62 KB
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
47
48
49
50
51
52
# 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
failedJobsHistoryLimit: 1
concurrencyPolicy: Forbid
activeDeadlineSeconds: 20
ttlSecondsAfterFinished: 0
image:
# image.repository -- The container image to use
repository: thomasnyambati/kubecost-reports-exporter
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: ""
imagePullSecrets: []
nameOverride: ""
fullnameOverride: ""
serviceAccount:
create: false
name: ""
annotations: {}
podAnnotations: {}
podSecurityContext: {}
securityContext: {}
resources: {}
nodeSelector: {}
tolerations: []
affinity: {}
kubecost:
# kubecost.logLevel -- exporter log level.
logLevel: info
# kubecost.bucketName -- S3 Bucket name for reports export
bucketName: kubecost-reports-exporter
# kubecost.allocationCostUrl -- Url for allocation api cost reports
allocationCostUrl: "/model/allocation?window=15m&aggregate=pod&includeAggregatedMetadata=true"
# kubecost.assetsCostUrl -- Url for assets api cost reports
assetsCostUrl: "/model/assets?window=15m&filterCategories=Compute&filterTypes=Node&filterServices=Kubernetes"
# kubecost.diagnosticsUrl -- Url for prometheus diagnostics
diagnosticsUrl: "/diagnostics/prometheusMetrics"
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: {}