Files
deprecated-helm-charts/stable/prometheus-adapter/values.yaml
T
Justin McCarty 7dbf0a9f10 Adding support for externally defined adapter rules (#8959)
* Adding support for externally defined adapter rules

Signed-off-by: Justin McCarty <justin.mccarty@syapse.com>

* Adding comment in values for the existing rules entry

Signed-off-by: Justin McCarty <justin.mccarty@syapse.com>

* Removing trailing space

Signed-off-by: Justin McCarty <justin.mccarty@syapse.com>
2019-01-02 11:01:35 -08:00

70 lines
1.3 KiB
YAML

# Default values for k8s-prometheus-adapter..
affinity: {}
image:
repository: directxman12/k8s-prometheus-adapter-amd64
tag: v0.4.1
pullPolicy: IfNotPresent
logLevel: 4
metricsRelistInterval: 1m
nodeSelector: {}
# Url to access prometheus
prometheus:
url: http://prometheus.default.svc
port: 9090
replicas: 1
rbac:
# Specifies whether RBAC resources should be created
create: true
serviceAccount:
# Specifies whether a service account should be created
create: true
# The name of the service account to use.
# If not set and create is true, a name is generated using the fullname template
name:
resources: {}
# requests:
# cpu: 100m
# memory: 128Mi
# limits:
# cpu: 100m
# memory: 128Mi
rules:
default: true
custom: []
# - seriesQuery: '{__name__=~"^some_metric_count$"}'
# resources:
# template: <<.Resource>>
# name:
# matches: ""
# as: "my_custom_metric"
# metricsQuery: sum(<<.Series>>{<<.LabelMatchers>>}) by (<<.GroupBy>>)
# Mounts a configMap with pre-generated rules for use. Overrides the
# default and custom entries
existing:
service:
annotations: {}
port: 443
type: ClusterIP
tls:
enable: false
ca: |-
# Public CA file that signed the APIService
key: |-
# Private key of the APIService
certificate: |-
# Public key of the APIService
tolerations: []