Files
deprecated-helm-charts/stable/stackdriver-exporter/values.yaml
T
babouneandKubernetes Prow Robot 7e9730490a add tolerations, affinity and nodeSelector to stackdriver-exporter (#11854)
* add tolerations, affinity and nodeSelector to stackdriver-exporter
fix pb w too many blank lines

Signed-off-by: baboune <nicolas.seyvet@sandvik.com>

* Update stable/stackdriver-exporter/Chart.yaml

Co-Authored-By: baboune <seyvet@yahoo.com>
Signed-off-by: baboune <nicolas.seyvet@sandvik.com>
2019-03-05 01:52:00 -08:00

71 lines
1.7 KiB
YAML

# Number of exporters to run
replicaCount: 1
# Restart policy for container
restartPolicy: Always
image:
repository: frodenas/stackdriver-exporter
tag: v0.6.0
pullPolicy: IfNotPresent
resources: {}
# requests:
# cpu: 100m
# memory: 128Mi
# limits:
# cpu: 100m
# memory: 128Mi
service:
type: ClusterIP
httpPort: 9255
annotations: {}
stackdriver:
# The Google Project ID to gather metrics for
projectId: "FALSE"
# Max number of retries that should be attempted on 503 errors from Stackdriver
maxRetries: 0
# How long should Stackdriver_exporter wait for a result from the Stackdriver API
httpTimeout: 10s
# Max time between each request in an exp backoff scenario
maxBackoff: 5s
# The amount of jitter to introduce in an exp backoff scenario
backoffJitter: 1s
# The HTTP statuses that should trigger a retry
retryStatuses: 503
metrics:
# The prefixes to gather metrics for, we default to just CPU metrics.
typePrefixes: 'compute.googleapis.com/instance/cpu'
# The frequency to request
interval: '5m'
# How far into the past to offset
offset: '0s'
web:
# Port to listen on
listenAddress: ':9255'
# Path under which to expose metrics.
path: /metrics
## Pod affinity
##
affinity: {}
annotations: {}
## Node labels for stackdriver-exporter pod assignment
## Ref: https://kubernetes.io/docs/user-guide/node-selection/
##
nodeSelector: {}
## Node tolerations for stackdriver-exporter scheduling to nodes with taints
## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/
##
tolerations: []
# - key: "key"
# operator: "Equal|Exists"
# value: "value"
# effect: "NoSchedule|PreferNoSchedule|NoExecute(1.6 only)"