values.yaml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. ## number of exporter instances
  2. ##
  3. replicaCount: 1
  4. ## restart policy for all containers
  5. ##
  6. restartPolicy: Always
  7. image:
  8. repository: justwatch/elasticsearch_exporter
  9. tag: 1.0.2
  10. pullPolicy: IfNotPresent
  11. resources: {}
  12. # requests:
  13. # cpu: 100m
  14. # memory: 128Mi
  15. # limits:
  16. # cpu: 100m
  17. # memory: 128Mi
  18. priorityClassName: ""
  19. nodeSelector: {}
  20. tolerations: {}
  21. podAnnotations: {}
  22. service:
  23. type: ClusterIP
  24. httpPort: 9108
  25. annotations: {}
  26. es:
  27. ## Address (host and port) of the Elasticsearch node we should connect to.
  28. ## This could be a local node (localhost:9200, for instance), or the address
  29. ## of a remote Elasticsearch server. When basic auth is needed,
  30. ## specify as: <proto>://<user>:<password>@<host>:<port>. e.g., http://admin:pass@localhost:9200.
  31. ##
  32. uri: http://external-es.logging.svc:9200
  33. ## If true, query stats for all nodes in the cluster, rather than just the
  34. ## node we connect to.
  35. ##
  36. all: true
  37. ## If true, query stats for all indices in the cluster.
  38. ##
  39. indices: true
  40. ## Timeout for trying to get stats from Elasticsearch. (ex: 20s)
  41. ##
  42. timeout: 30s
  43. ssl:
  44. ## If true, a secure connection to ES cluster is used (requires SSL certs below)
  45. ##
  46. enabled: false
  47. ca:
  48. ## PEM that contains trusted CAs used for setting up secure Elasticsearch connection
  49. ##
  50. # pem:
  51. client:
  52. ## PEM that contains the client cert to connect to Elasticsearch.
  53. ##
  54. # pem:
  55. ## Private key for client auth when connecting to Elasticsearch
  56. ##
  57. # key:
  58. web:
  59. ## Path under which to expose metrics.
  60. ##
  61. path: /metrics
  62. serviceMonitor:
  63. ## If true, a ServiceMonitor CRD is created for a prometheus operator
  64. ## https://github.com/coreos/prometheus-operator
  65. ##
  66. enabled: true
  67. labels: {}