Skip to content
Open
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: v2
name: node-problem-detector
version: 2.4.0
Comment thread
aslafy-z marked this conversation as resolved.
version: 2.4.1
appVersion: v1.35.1
home: https://github.com/kubernetes/node-problem-detector
description: |
Expand Down
5 changes: 3 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.4.0](https://img.shields.io/badge/Version-2.4.0-informational?style=flat-square) ![AppVersion: v1.35.1](https://img.shields.io/badge/AppVersion-v1.35.1-informational?style=flat-square)
![Version: 2.5.0](https://img.shields.io/badge/Version-2.5.0-informational?style=flat-square) ![AppVersion: v1.35.1](https://img.shields.io/badge/AppVersion-v1.35.1-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 All @@ -17,7 +17,7 @@ helm install --generate-name oci://ghcr.io/deliveryhero/helm-charts/node-problem
To install a specific version of this chart:

```console
helm install --generate-name oci://ghcr.io/deliveryhero/helm-charts/node-problem-detector --version 2.4.0
helm install --generate-name oci://ghcr.io/deliveryhero/helm-charts/node-problem-detector --version 2.5.0
```

To install the chart with the release name `my-release`:
Expand Down Expand Up @@ -64,6 +64,7 @@ helm install my-release oci://ghcr.io/deliveryhero/helm-charts/node-problem-dete
| image.repository | string | `"registry.k8s.io/node-problem-detector/node-problem-detector"` | |
| image.tag | string | `"v1.35.1"` | |
| imagePullSecrets | list | `[]` | |
| initContainers | list | `[]` | |
| labels | object | `{}` | |
| logDir.host | string | `"/var/log/"` | log directory on k8s host |
| logDir.pod | string | `""` | log directory in pod (volume mount), use logDir.host if empty |
Expand Down
4 changes: 4 additions & 0 deletions stable/node-problem-detector/templates/daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,10 @@ spec:
{{- if .Values.priorityClassName }}
priorityClassName: {{ .Values.priorityClassName | quote }}
{{- end }}
{{- if .Values.initContainers }}
initContainers:
{{- toYaml .Values.initContainers | nindent 8 }}
{{- end }}
containers:
- name: {{ .Chart.Name }}
{{- if .Values.image.digest }}
Expand Down
2 changes: 2 additions & 0 deletions stable/node-problem-detector/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,8 @@ extraVolumes: []

extraVolumeMounts: []

initContainers: []

extraContainers: []

# updateStrategy -- Manage the daemonset update strategy
Expand Down