mirror of https://git.rancher.io/charts
19 lines
451 B
YAML
19 lines
451 B
YAML
{{- if .Values.endpoints }}
|
|
apiVersion: v1
|
|
kind: Endpoints
|
|
metadata:
|
|
name: {{ template "prometheus-node-exporter.fullname" . }}
|
|
namespace: {{ template "prometheus-node-exporter.namespace" . }}
|
|
labels:
|
|
{{ include "prometheus-node-exporter.labels" . | indent 4 }}
|
|
subsets:
|
|
- addresses:
|
|
{{- range .Values.endpoints }}
|
|
- ip: {{ . }}
|
|
{{- end }}
|
|
ports:
|
|
- name: metrics
|
|
port: 9100
|
|
protocol: TCP
|
|
{{- end }}
|