mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
* 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>
70 lines
1.3 KiB
YAML
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: []
|