summaryrefslogtreecommitdiffstats
path: root/vnfs/DAaaS/prometheus-operator/templates/exporters/kube-dns/service.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'vnfs/DAaaS/prometheus-operator/templates/exporters/kube-dns/service.yaml')
-rw-r--r--vnfs/DAaaS/prometheus-operator/templates/exporters/kube-dns/service.yaml24
1 files changed, 24 insertions, 0 deletions
diff --git a/vnfs/DAaaS/prometheus-operator/templates/exporters/kube-dns/service.yaml b/vnfs/DAaaS/prometheus-operator/templates/exporters/kube-dns/service.yaml
new file mode 100644
index 00000000..6a13b746
--- /dev/null
+++ b/vnfs/DAaaS/prometheus-operator/templates/exporters/kube-dns/service.yaml
@@ -0,0 +1,24 @@
+{{- if .Values.kubeDns.enabled }}
+apiVersion: v1
+kind: Service
+metadata:
+ name: {{ template "prometheus-operator.fullname" . }}-kube-dns
+ labels:
+ app: {{ template "prometheus-operator.name" . }}-kube-dns
+ jobLabel: kube-dns
+{{ include "prometheus-operator.labels" . | indent 4 }}
+ namespace: kube-system
+spec:
+ clusterIP: None
+ ports:
+ - name: http-metrics-dnsmasq
+ port: 10054
+ protocol: TCP
+ targetPort: 10054
+ - name: http-metrics-skydns
+ port: 10055
+ protocol: TCP
+ targetPort: 10055
+ selector:
+{{ include "prometheus-operator.rangeskipempty" .Values.kubeDns.service.selector | indent 4 }}
+{{- end }} \ No newline at end of file