[stable/prometheus-node-exporter] Upgrade to 1.0.0 & set group to non-root (#22603)

Signed-off-by: Steven Sheehy <steven.sheehy@hedera.com>
This commit is contained in:
Steven Sheehy
2020-05-31 00:41:53 -07:00
committed by GitHub
parent 001e039756
commit c2035f67fb
3 changed files with 7 additions and 5 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
apiVersion: v1
appVersion: 0.18.1
appVersion: 1.0.0
description: A Helm chart for prometheus node-exporter
name: prometheus-node-exporter
version: 1.9.1
version: 1.10.0
home: https://github.com/prometheus/node_exporter/
sources:
- https://github.com/prometheus/node_exporter/
+2 -2
View File
@@ -39,7 +39,7 @@ 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.1` |
| `image.tag` | Image tag | `v1.0.0` |
| `image.pullPolicy` | Image pull policy | `IfNotPresent` |
| `extraArgs` | Additional container arguments | `[]` |
| `extraHostVolumeMounts` | Additional host volume mounts | `[]` |
@@ -57,7 +57,7 @@ The following table lists the configurable parameters of the Node Exporter chart
| `serviceAccount.create` | Specifies whether a service account should be created. | `true` |
| `serviceAccount.name` | Service account to be used. If not set and `serviceAccount.create` is `true`, a name is generated using the fullname template | |
| `serviceAccount.imagePullSecrets` | Specify image pull secrets | `[]` |
| `securityContext` | SecurityContext | `{"runAsNonRoot": true, "runAsUser": 65534}` |
| `securityContext` | SecurityContext | See values.yaml |
| `affinity` | A group of affinity scheduling rules for pod assignment | `{}` |
| `nodeSelector` | Node labels for pod assignment | `{}` |
| `tolerations` | List of node taints to tolerate | `- effect: NoSchedule operator: Exists` |
+3 -1
View File
@@ -3,7 +3,7 @@
# Declare variables to be passed into your templates.
image:
repository: quay.io/prometheus/node-exporter
tag: v0.18.1
tag: v1.0.0
pullPolicy: IfNotPresent
service:
@@ -50,6 +50,8 @@ serviceAccount:
imagePullSecrets: []
securityContext:
fsGroup: 65534
runAsGroup: 65534
runAsNonRoot: true
runAsUser: 65534