Skip to content

Commit ff99541

Browse files
volker-rascheknpdgm
authored andcommitted
feat(helm): support custom TLS config
The following patch adjusts the podMonitor and serviceMonitor resource. The static configuration `tlsConfig` is replaced so that the TLS configuration can be configured individually by the user. The option `insecureSkipVerify: true` has been removed as it is a security risk. Users also have the option of redefining the `insecureSkipVerify` property directly via `tlsConfig` if necessary. With regard to the previous rbac auth option, however, this is superfluous. Furthermore, the schema, i.e. HTTP or HTTPS, can now be defined to tell Prometheus which protocol should be used for communication. The following sample configuration specifies that the x509-certificate-exporter encrypts requests via HTTPS and the HTTP client must authenticate itself via HTTPS (client auth). ```yaml prometheusServiceMonitor: tlsConfig: caFile: /etc/prometheus/tls/ca/ca.crt certFile: /etc/prometheus/tls/app2app/tls.crt keyFile: /etc/prometheus/tls/app2app/tls.key insecureSkipVerify: false serverName: prometheus-x509-certificate-exporter prometheusPodMonitor: tlsConfig: caFile: /etc/prometheus/tls/ca/ca.crt certFile: /etc/prometheus/tls/app2app/tls.crt keyFile: /etc/prometheus/tls/app2app/tls.key insecureSkipVerify: false serverName: prometheus-x509-certificate-exporter ``` Important Note: The `serverName` attribute must correspond to the CommonName or a Subject Alternative Name (SAN) of the TLS certificate. If this is not the case, prometheus will reject the connection trying to match the IP address of the pod with the CommonName / SAN. The client certificate and private key as well as the certificate of the certificate authorithy must be mounted additionally via the `extraVolumes` and `extraVolumeMounts` option. This configuration is not standard and must also be implemented by the user if TLS client authentication is required. Signed-off-by: Markus Pesch <[email protected]>
1 parent 645a3ca commit ff99541

File tree

4 files changed

+21
-5
lines changed

4 files changed

+21
-5
lines changed

deploy/charts/x509-certificate-exporter/README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -427,14 +427,18 @@ hostPathsExporter:
427427
| prometheusServiceMonitor.scrapeInterval | string | `"60s"` | Target scrape interval set in the ServiceMonitor |
428428
| prometheusServiceMonitor.scrapeTimeout | string | `"30s"` | Target scrape timeout set in the ServiceMonitor |
429429
| prometheusServiceMonitor.extraLabels | object | `{}` | Additional labels to add to ServiceMonitor objects |
430-
| prometheusServiceMonitor.metricRelabelings | list | `[]` | Metrics relabel config for the ServiceMonitor, see: https://github.com/prometheus-operator/prometheus-operator/blob/main/Documentation/api.md#monitoring.coreos.com/v1.Endpoint |
430+
| prometheusServiceMonitor.metricRelabelings | list | `[]` | Metric relabel config for the ServiceMonitor, see: https://github.com/prometheus-operator/prometheus-operator/blob/main/Documentation/api.md#monitoring.coreos.com/v1.Endpoint |
431431
| prometheusServiceMonitor.relabelings | list | `[]` | Relabel config for the ServiceMonitor, see: https://github.com/prometheus-operator/prometheus-operator/blob/main/Documentation/api.md#monitoring.coreos.com/v1.Endpoint |
432+
| prometheusServiceMonitor.scheme | string | `"http"` | Scheme config for the ServiceMonitor, see: https://github.com/prometheus-operator/prometheus-operator/blob/main/Documentation/api.md#monitoring.coreos.com/v1.Endpoint |
433+
| prometheusServiceMonitor.tlsConfig | object | `{}` | Custom TLS configuration, see: https://github.com/prometheus-operator/prometheus-operator/blob/main/Documentation/api.md#monitoring.coreos.com/v1.TLSConfig |
432434
| prometheusPodMonitor.create | bool | `false` | Should a PodMonitor object be installed to scrape this exporter. For prometheus-operator (kube-prometheus) users. |
433435
| prometheusPodMonitor.scrapeInterval | string | `"60s"` | Target scrape interval set in the PodMonitor |
434436
| prometheusPodMonitor.scrapeTimeout | string | `"30s"` | Target scrape timeout set in the PodMonitor |
435437
| prometheusPodMonitor.extraLabels | object | `{}` | Additional labels to add to PodMonitor objects |
436438
| prometheusPodMonitor.metricRelabelings | list | `[]` | Metric relabel config for the PodMonitor, see: https://github.com/prometheus-operator/prometheus-operator/blob/main/Documentation/api.md#monitoring.coreos.com/v1.Endpoint |
437439
| prometheusPodMonitor.relabelings | list | `[]` | Relabel config for the PodMonitor, see: https://github.com/prometheus-operator/prometheus-operator/blob/main/Documentation/api.md#monitoring.coreos.com/v1.Endpoint |
440+
| prometheusPodMonitor.scheme | string | `"http"` | Scheme config for the PodMonitor, see: https://github.com/prometheus-operator/prometheus-operator/blob/main/Documentation/api.md#monitoring.coreos.com/v1.Endpoint |
441+
| prometheusPodMonitor.tlsConfig | object | `{}` | Custom TLS configuration, see: https://github.com/prometheus-operator/prometheus-operator/blob/main/Documentation/api.md#monitoring.coreos.com/v1.TLSConfig |
438442
| prometheusRules.create | bool | `true` | Should a PrometheusRule object be installed to alert on certificate expiration. For prometheus-operator (kube-prometheus) users. |
439443
| prometheusRules.alertOnReadErrors | bool | `true` | Should the X509ExporterReadErrors alerting rule be created to notify when the exporter can't read files or authenticate with the Kubernetes API. It aims at preventing undetected misconfigurations and monitoring regressions. |
440444
| prometheusRules.readErrorsSeverity | string | `"warning"` | Severity for the X509ExporterReadErrors alerting rule |

deploy/charts/x509-certificate-exporter/templates/podmonitor.yaml

+4-2
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,11 @@ spec:
1919
scrapeTimeout: {{ .Values.prometheusPodMonitor.scrapeTimeout }}
2020
{{- if .Values.rbacProxy.enable }}
2121
bearerTokenFile: /var/run/secrets/kubernetes.io/serviceaccount/token
22-
scheme: https
22+
{{- end }}
23+
scheme: {{ .Values.prometheusPodMonitor.scheme }}
24+
{{- with .Values.prometheusPodMonitor.tlsConfig }}
2325
tlsConfig:
24-
insecureSkipVerify: true
26+
{{- . | toYaml | nindent 6 }}
2527
{{- end }}
2628
{{- with .Values.prometheusPodMonitor.metricRelabelings }}
2729
metricRelabelings:

deploy/charts/x509-certificate-exporter/templates/servicemonitor.yaml

+4-2
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,11 @@ spec:
1919
scrapeTimeout: {{ .Values.prometheusServiceMonitor.scrapeTimeout }}
2020
{{- if .Values.rbacProxy.enable }}
2121
bearerTokenFile: /var/run/secrets/kubernetes.io/serviceaccount/token
22-
scheme: https
22+
{{- end }}
23+
scheme: {{ .Values.prometheusServiceMonitor.scheme }}
24+
{{- with .Values.prometheusServiceMonitor.tlsConfig }}
2325
tlsConfig:
24-
insecureSkipVerify: true
26+
{{- . | toYaml | nindent 6 }}
2527
{{- end }}
2628
{{- with .Values.prometheusServiceMonitor.metricRelabelings }}
2729
metricRelabelings:

deploy/charts/x509-certificate-exporter/values.yaml

+8
Original file line numberDiff line numberDiff line change
@@ -240,6 +240,10 @@ prometheusServiceMonitor:
240240
metricRelabelings: []
241241
# -- Relabel config for the ServiceMonitor, see: https://github.com/prometheus-operator/prometheus-operator/blob/main/Documentation/api.md#monitoring.coreos.com/v1.Endpoint
242242
relabelings: []
243+
# -- Scheme config for the ServiceMonitor, see: https://github.com/prometheus-operator/prometheus-operator/blob/main/Documentation/api.md#monitoring.coreos.com/v1.Endpoint
244+
scheme: http
245+
# -- Custom TLS configuration, see: https://github.com/prometheus-operator/prometheus-operator/blob/main/Documentation/api.md#monitoring.coreos.com/v1.TLSConfig
246+
tlsConfig: {}
243247

244248
prometheusPodMonitor:
245249
# -- Should a PodMonitor object be installed to scrape this exporter. For prometheus-operator (kube-prometheus) users.
@@ -254,6 +258,10 @@ prometheusPodMonitor:
254258
metricRelabelings: []
255259
# -- Relabel config for the PodMonitor, see: https://github.com/prometheus-operator/prometheus-operator/blob/main/Documentation/api.md#monitoring.coreos.com/v1.Endpoint
256260
relabelings: []
261+
# -- Scheme config for the PodMonitor, see: https://github.com/prometheus-operator/prometheus-operator/blob/main/Documentation/api.md#monitoring.coreos.com/v1.Endpoint
262+
scheme: http
263+
# -- Custom TLS configuration, see: https://github.com/prometheus-operator/prometheus-operator/blob/main/Documentation/api.md#monitoring.coreos.com/v1.TLSConfig
264+
tlsConfig: {}
257265

258266
prometheusRules:
259267
# -- Should a PrometheusRule object be installed to alert on certificate expiration. For prometheus-operator (kube-prometheus) users.

0 commit comments

Comments
 (0)