16 lines
374 B
YAML
16 lines
374 B
YAML
|
{{- if and .Values.monitor.enabled }}
|
||
|
apiVersion: v1
|
||
|
kind: Service
|
||
|
metadata:
|
||
|
name: {{ include "cf-monitor.fullname" . }}
|
||
|
labels: {{- include "cf-monitor.labels" . | nindent 4 }}
|
||
|
spec:
|
||
|
type: ClusterIP
|
||
|
ports:
|
||
|
- name: "http"
|
||
|
port: 80
|
||
|
protocol: TCP
|
||
|
targetPort: 9020
|
||
|
selector: {{- include "cf-monitor.selectorLabels" . | nindent 4 }}
|
||
|
{{- end }}
|