aboutsummaryrefslogtreecommitdiffstats
path: root/vnfs/DAaaS/deploy/collection/charts/prometheus-node-exporter/templates/endpoints.yaml
blob: 226dd486c1c25704cf53d6f4acc065d6e96ea47a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{{- if .Values.endpoints }}
apiVersion: v1
kind: Endpoints
metadata:
  name: {{ template "prometheus-node-exporter.fullname" . }}
  labels:
{{ include "prometheus-node-exporter.labels" . | indent 4 }}
subsets:
  - addresses:
      {{- range .Values.endpoints }}
      - ip: {{ . }}
      {{- end }}
    ports:
      - name: metrics
        port: 9100
        protocol: TCP
{{- end }}