diff --git a/charts/prometheus-smartctl-exporter/Chart.yaml b/charts/prometheus-smartctl-exporter/Chart.yaml index 769d96d4260b..4db8ea26f726 100644 --- a/charts/prometheus-smartctl-exporter/Chart.yaml +++ b/charts/prometheus-smartctl-exporter/Chart.yaml @@ -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.12.0 # 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 diff --git a/charts/prometheus-smartctl-exporter/templates/daemonset.yaml b/charts/prometheus-smartctl-exporter/templates/daemonset.yaml index 1500c092698e..1aefec512ee5 100644 --- a/charts/prometheus-smartctl-exporter/templates/daemonset.yaml +++ b/charts/prometheus-smartctl-exporter/templates/daemonset.yaml @@ -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 }} diff --git a/charts/prometheus-smartctl-exporter/values.yaml b/charts/prometheus-smartctl-exporter/values.yaml index d3bcfea73f14..29e34940c963 100644 --- a/charts/prometheus-smartctl-exporter/values.yaml +++ b/charts/prometheus-smartctl-exporter/values.yaml @@ -1,6 +1,10 @@ config: {} # devices: # - /dev/sda +# device_include: +# - /dev/sd.* +# device_include: +# - /dev/sr.* extraInstances: [] # - config: @@ -38,9 +42,10 @@ prometheusRules: image: repository: quay.io/prometheuscommunity/smartctl-exporter - pullPolicy: IfNotPresent # Overrides the image tag whose default is the chart appVersion. tag: "" + pullPolicy: IfNotPresent + pullSecrets: [] serviceAccount: # Specifies whether a service account should be created