From c42002a21abf8eff839ff1d2382152bde2bbe596 Mon Sep 17 00:00:00 2001 From: Vasily Sliouniaev Date: Mon, 4 Nov 2019 11:09:40 +0000 Subject: [PATCH] [stable/prometheus-node-exporter] Fix maps -> slices, bump version (#18527) * Fix maps -> slices, bump vers Signed-off-by: vas * Bump version, fix README.md Signed-off-by: vas --- stable/prometheus-node-exporter/Chart.yaml | 4 ++-- stable/prometheus-node-exporter/README.md | 8 ++++---- stable/prometheus-node-exporter/values.yaml | 8 ++++---- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/stable/prometheus-node-exporter/Chart.yaml b/stable/prometheus-node-exporter/Chart.yaml index dbd771d2e8..1cb9e625a9 100644 --- a/stable/prometheus-node-exporter/Chart.yaml +++ b/stable/prometheus-node-exporter/Chart.yaml @@ -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/ diff --git a/stable/prometheus-node-exporter/README.md b/stable/prometheus-node-exporter/README.md index fb532ef905..f5cbd8b86c 100644 --- a/stable/prometheus-node-exporter/README.md +++ b/stable/prometheus-node-exporter/README.md @@ -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, diff --git a/stable/prometheus-node-exporter/values.yaml b/stable/prometheus-node-exporter/values.yaml index 9fa068630f..900111cc92 100644 --- a/stable/prometheus-node-exporter/values.yaml +++ b/stable/prometheus-node-exporter/values.yaml @@ -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: # hostPath: # mountPath: @@ -102,6 +102,6 @@ extraHostVolumeMounts: {} ## Additional configmaps to be mounted. ## -configmaps: {} +configmaps: [] # - name: # mountPath: