aboutsummaryrefslogtreecommitdiffstats
path: root/vnfs/DAaaS/collection/charts/prometheus-node-exporter/templates/service.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'vnfs/DAaaS/collection/charts/prometheus-node-exporter/templates/service.yaml')
-rwxr-xr-xvnfs/DAaaS/collection/charts/prometheus-node-exporter/templates/service.yaml22
1 files changed, 0 insertions, 22 deletions
diff --git a/vnfs/DAaaS/collection/charts/prometheus-node-exporter/templates/service.yaml b/vnfs/DAaaS/collection/charts/prometheus-node-exporter/templates/service.yaml
deleted file mode 100755
index cffe547b..00000000
--- a/vnfs/DAaaS/collection/charts/prometheus-node-exporter/templates/service.yaml
+++ /dev/null
@@ -1,22 +0,0 @@
-apiVersion: v1
-kind: Service
-metadata:
- name: {{ template "prometheus-node-exporter.fullname" . }}
-{{- if .Values.service.annotations }}
- annotations:
-{{ toYaml .Values.service.annotations | indent 4 }}
-{{- end }}
- labels: {{ include "prometheus-node-exporter.labels" . | indent 4 }}
-spec:
- type: {{ .Values.service.type }}
- ports:
- - port: {{ .Values.service.port }}
- {{- if ( and (eq .Values.service.type "NodePort" ) (not (empty .Values.service.nodePort)) ) }}
- nodePort: {{ .Values.service.nodePort }}
- {{- end }}
- targetPort: {{ .Values.service.targetPort }}
- protocol: TCP
- name: metrics
- selector:
- app: {{ template "prometheus-node-exporter.name" . }}
- release: {{ .Release.Name }}