Skip to content
This repository was archived by the owner on Jun 11, 2025. It is now read-only.
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 docs/missing-container-metrics/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.1
version: 0.1.2

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
1 change: 1 addition & 0 deletions docs/missing-container-metrics/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,6 @@ $ helm install my-release-name missing-container-metrics/missing-container-metri
| podSecurityContext | Set the security context for the pods | |
| securityContext | Set the security context for the container in the pods | |
| resources | CPU/memory resource requests/limits | `{}` |
| tolerations | Tolerations used for pod scheduling |
| useDocker | If true, container info is obtained from Docker | `false` |
| useContainerd | If true, container info is obtained from Containerd | `true` |
4 changes: 4 additions & 0 deletions docs/missing-container-metrics/templates/daemon-set.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ spec:
hostPath:
path: /run/containerd/containerd.sock
{{- end }}
{{- if .Values.tolerations }}
tolerations:
{{- toYaml .Values.tolerations | nindent 8 }}
{{- end }}
containers:
- name: {{ .Chart.Name }}
securityContext:
Expand Down