28 lines
859 B
YAML
28 lines
859 B
YAML
{{/*
|
|
Service for the gitops-status-server
|
|
Exposes the Flask API inside the cluster (ClusterIP)
|
|
This allows rsyslog pipeline and Grafana to query the API endpoints
|
|
*/}}
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ include "gitops-status-server.fullname" . }}
|
|
labels:
|
|
{{- include "gitops-status-server.labels" . | nindent 4 }}
|
|
{{- with .Values.service.annotations }}
|
|
annotations:
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
spec:
|
|
type: {{ .Values.service.type }}
|
|
ports:
|
|
- port: {{ .Values.service.port }}
|
|
targetPort: {{ .Values.service.targetPort | default 5000 }}
|
|
protocol: TCP
|
|
name: http
|
|
{{- if and (eq .Values.service.type "NodePort") .Values.service.nodePort }}
|
|
nodePort: {{ .Values.service.nodePort }}
|
|
{{- end }}
|
|
selector:
|
|
{{- include "gitops-status-server.selectorLabels" . | nindent 4 }}
|