-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathvalues.yaml
72 lines (57 loc) · 2.14 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
image:
repository: wavefronthq/prometheus-storage-adapter
tag: latest
pullPolicy: IfNotPresent
adapter:
## Port/address to listen on in the format `[address:]port`.
## If no address is specified, the adapter listens on all interfaces.
## Required
listenPort: 80
targetPort: 1234
## The Wavefront proxy host address.
## The proxy can be anywhere network reachable including outside of the cluster.
## Required if `proxy.enabled` is set to false.
# proxyHost: ""
## The Wavefront proxy port. Defaults to 2878.
# proxyPort: 2878
## whether to enable debug logging. defaults to false.
# enableDebug: false
## Prefix for metric names. If omitted, no prefix is added.
# prefix: ""
## A comma separated list of tags to be added to each point tag.
## Specified in the format "tag1=value1,tag2=value2" etc.
# tags: ""
## Wavefront Storage Adapter resource requests and limits
## Make sure to keep requests and limits equal to keep the pods in the Guaranteed QoS class
## Ref: http://kubernetes.io/docs/user-guide/compute-resources/
resources: {}
# limits:
# cpu: 200m
# memory: 256Mi
# requests:
# cpu: 50m
# memory: 20Mi
priorityClassName: ""
nodeSelector: {}
tolerations: []
affinity: {}
## Wavefront Proxy is a metrics forwarder that is used to relay metrics to the Wavefront SaaS service.
## It can receive metrics from the Prometheus Storage Adapter as well as other metrics collection services
## within your cluster. The proxy also supports preprocessor rules to allow you to further filter
## and enhance your metric names, and tags. Should network connectivity fall between the proxy and
## Wavefront SaaS service, the proxy will buffer metrics and flush when connectivity resumes.
## Ref: https://docs.wavefront.com/proxies.html
proxy:
enabled: true
## DO NOT EDIT
## This chart depends on the "wavefront" chart for proxy deployments.
## The values below override the default values in the wavefront chart
## as relevant to the prometheus storage adpater and are not meant to
## be changed by end users.
wavefront:
collector:
enabled: false
rbac:
create: false
serviceAccount:
create: false