aboutsummaryrefslogtreecommitdiffstats
path: root/vnfs/DAaaS/deploy/collection/charts/prometheus-node-exporter/templates/endpoints.yaml
blob: 4c5c75fa9d4a62c3f41909fbee4062a0fffd0661 (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 }}