Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[stable/node-problem-detector]: additionalRelabelings value right place #515

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion stable/node-problem-detector/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v1
name: node-problem-detector
version: "2.3.7"
version: "2.3.8"
appVersion: v0.8.13
home: https://github.com/kubernetes/node-problem-detector
description: |
Expand Down
4 changes: 2 additions & 2 deletions stable/node-problem-detector/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# node-problem-detector

![Version: 2.3.7](https://img.shields.io/badge/Version-2.3.7-informational?style=flat-square) ![AppVersion: v0.8.13](https://img.shields.io/badge/AppVersion-v0.8.13-informational?style=flat-square)
![Version: 2.3.8](https://img.shields.io/badge/Version-2.3.8-informational?style=flat-square) ![AppVersion: v0.8.13](https://img.shields.io/badge/AppVersion-v0.8.13-informational?style=flat-square)

This chart installs a [node-problem-detector](https://github.com/kubernetes/node-problem-detector) daemonset. This tool aims to make various node problems visible to the upstream layers in cluster management stack. It is a daemon which runs on each node, detects node problems and reports them to apiserver.

Expand Down Expand Up @@ -68,12 +68,12 @@ helm install my-release deliveryhero/node-problem-detector -f values.yaml
| metrics.annotations | object | `{}` | Override all default annotations when `metrics.enabled=true` with specified values. |
| metrics.enabled | bool | `false` | Expose metrics in Prometheus format with default configuration. |
| metrics.prometheusRule.additionalLabels | object | `{}` | |
| metrics.prometheusRule.additionalRelabelings | list | `[]` | |
| metrics.prometheusRule.additionalRules | list | `[]` | |
| metrics.prometheusRule.defaultRules.create | bool | `true` | |
| metrics.prometheusRule.defaultRules.disabled | list | `[]` | |
| metrics.prometheusRule.enabled | bool | `false` | |
| metrics.serviceMonitor.additionalLabels | object | `{}` | |
| metrics.serviceMonitor.additionalRelabelings | list | `[]` | |
| metrics.serviceMonitor.enabled | bool | `false` | |
| nameOverride | string | `""` | |
| nodeSelector | object | `{}` | |
Expand Down
2 changes: 1 addition & 1 deletion stable/node-problem-detector/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -114,13 +114,13 @@ metrics:
serviceMonitor:
enabled: false
additionalLabels: {}
additionalRelabelings: []
prometheusRule:
enabled: false
defaultRules:
create: true
disabled: []
additionalLabels: {}
additionalRelabelings: []
additionalRules: []

env:
Expand Down
Loading