Skip to content

Commit

Permalink
Add support for device-include / device-exclude and image pull secrets
Browse files Browse the repository at this point in the history
Signed-off-by: Joseph Mifsud <[email protected]>
  • Loading branch information
jmif committed Nov 11, 2024
1 parent 1e4b812 commit c87e185
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion charts/prometheus-smartctl-exporter/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.11.0
version: 0.11.1

# 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
12 changes: 12 additions & 0 deletions charts/prometheus-smartctl-exporter/templates/daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,24 @@ spec:
{{- include "prometheus-smartctl-exporter.selectorLabels" $global | nindent 8 }}
idx: i{{ $idx }}
spec:
{{- if $global.Values.image.pullSecrets }}
imagePullSecrets:
{{- range $secret := $global.Values.image.pullSecrets }}
- name: {{ $secret }}
{{- end }}
{{- end }}
containers:
- image: "{{ $global.Values.image.repository }}:{{ $global.Values.image.tag | default $global.Chart.AppVersion }}"
imagePullPolicy: {{ $global.Values.image.pullPolicy }}
args:
- '--smartctl.path={{ $config.smartctl_location }}'
- '--smartctl.interval={{ $config.collect_not_more_than_period }}'
{{- if $config.device_exclude }}
- '--smartctl.device-exclude={{ $config.device_exclude }}'
{{- end }}
{{- if $config.device_include }}
- '--smartctl.device-include={{ $config.device_include }}'
{{- end }}
{{ range $config.devices }}
- '--smartctl.device={{ . }}'
{{ end }}
Expand Down

0 comments on commit c87e185

Please sign in to comment.