mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
[stable/prometheus-node-exporter] Fix maps -> slices, bump version (#18527)
* Fix maps -> slices, bump vers Signed-off-by: vas <vasily.sliouniaev@jet.com> * Bump version, fix README.md Signed-off-by: vas <vasily.sliouniaev@jet.com>
This commit is contained in:
committed by
Kubernetes Prow Robot
parent
75aae8c77b
commit
c42002a21a
@@ -1,8 +1,8 @@
|
||||
apiVersion: v1
|
||||
appVersion: "0.18.0"
|
||||
appVersion: 0.18.1
|
||||
description: A Helm chart for prometheus node-exporter
|
||||
name: prometheus-node-exporter
|
||||
version: 1.7.2
|
||||
version: 1.7.3
|
||||
home: https://github.com/prometheus/node_exporter/
|
||||
sources:
|
||||
- https://github.com/prometheus/node_exporter/
|
||||
|
||||
@@ -39,11 +39,11 @@ The following table lists the configurable parameters of the Node Exporter chart
|
||||
| Parameter | Description | Default | |
|
||||
| --------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | --------------------------------------- | --- |
|
||||
| `image.repository` | Image repository | `quay.io/prometheus/node-exporter` | |
|
||||
| `image.tag` | Image tag | `v0.18.0` | |
|
||||
| `image.tag` | Image tag | `v0.18.1` | |
|
||||
| `image.pullPolicy` | Image pull policy | `IfNotPresent` | |
|
||||
| `extraArgs` | Additional container arguments | `[]` | |
|
||||
| `extraHostVolumeMounts` | Additional host volume mounts | {} | |
|
||||
| `podLabels` | Additional labels to be added to pods | {} | |
|
||||
| `extraHostVolumeMounts` | Additional host volume mounts | `[]` | |
|
||||
| `podLabels` | Additional labels to be added to pods | `{}` | |
|
||||
| `rbac.create` | If true, create & use RBAC resources | `true` | |
|
||||
| `rbac.pspEnabled` | Specifies whether a PodSecurityPolicy should be created. | `true` | |
|
||||
| `resources` | CPU/Memory resource requests/limits | `{}` | |
|
||||
@@ -66,7 +66,7 @@ The following table lists the configurable parameters of the Node Exporter chart
|
||||
| `prometheus.monitor.additionalLabels` | Additional labels that can be used so ServiceMonitor will be discovered by Prometheus | `{}` | |
|
||||
| `prometheus.monitor.namespace` | namespace where servicemonitor resource should be created | `the same namespace as prometheus node exporter` | |
|
||||
| `prometheus.monitor.scrapeTimeout` | Timeout after which the scrape is ended | `10s` | |
|
||||
| `configmaps` | Allow mounting additional configmaps. | `{}` | |
|
||||
| `configmaps` | Allow mounting additional configmaps. | `[]` | |
|
||||
|
||||
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
# Declare variables to be passed into your templates.
|
||||
image:
|
||||
repository: quay.io/prometheus/node-exporter
|
||||
tag: v0.18.0
|
||||
tag: v0.18.1
|
||||
pullPolicy: IfNotPresent
|
||||
|
||||
service:
|
||||
@@ -88,12 +88,12 @@ tolerations:
|
||||
|
||||
## Additional container arguments
|
||||
##
|
||||
extraArgs: {}
|
||||
extraArgs: []
|
||||
# - --collector.diskstats.ignored-devices=^(ram|loop|fd|(h|s|v)d[a-z]|nvme\\d+n\\d+p)\\d+$
|
||||
|
||||
## Additional mounts from the host
|
||||
##
|
||||
extraHostVolumeMounts: {}
|
||||
extraHostVolumeMounts: []
|
||||
# - name: <mountName>
|
||||
# hostPath: <hostPath>
|
||||
# mountPath: <mountPath>
|
||||
@@ -102,6 +102,6 @@ extraHostVolumeMounts: {}
|
||||
|
||||
## Additional configmaps to be mounted.
|
||||
##
|
||||
configmaps: {}
|
||||
configmaps: []
|
||||
# - name: <configMapName>
|
||||
# mountPath: <mountPath>
|
||||
|
||||
Reference in New Issue
Block a user