mirror of
https://github.com/kubernetes-sigs/node-feature-discovery.git
synced 2024-12-14 11:57:51 +00:00
Merge pull request #1639 from TessaIO/chore-add-prometheus-pod-monitor-interval
chore/deploy: make interval property in PodMonitor configurable
This commit is contained in:
commit
af8a41cc02
3 changed files with 3 additions and 1 deletions
|
@ -12,7 +12,7 @@ metadata:
|
|||
spec:
|
||||
podMetricsEndpoints:
|
||||
- honorLabels: true
|
||||
interval: 10s
|
||||
interval: {{ .Values.prometheus.scrapeInterval }}
|
||||
path: /metrics
|
||||
port: metrics
|
||||
scheme: http
|
||||
|
|
|
@ -549,4 +549,5 @@ tls:
|
|||
|
||||
prometheus:
|
||||
enable: false
|
||||
scrapeInterval: 10s
|
||||
labels: {}
|
||||
|
|
|
@ -101,6 +101,7 @@ Chart parameters are available.
|
|||
| `featureGates.NodeFeatureAPI`| bool | true | Enable the [NodeFeature](../usage/custom-resources.md#nodefeature) CRD API for communicating node features. This will automatically disable the gRPC communication. **NOTE**: this parameter is related to the deprecated gRPC API and will be removed with it in a future release |
|
||||
| `prometheus.enable` | bool | false | Specifies whether to expose metrics using prometheus operator |
|
||||
| `prometheus.labels` | dict | {} | Specifies labels for use with the prometheus operator to control how it is selected |
|
||||
| `prometheus.scrapeInterval` | string | 10s | Specifies the interval by which metrics are scraped |
|
||||
| `priorityClassName` | string | | The name of the PriorityClass to be used for the NFD pods. |
|
||||
|
||||
Metrics are configured to be exposed using prometheus operator API's by
|
||||
|
|
Loading…
Reference in a new issue