Hangar/chart/templates/service-frontend.yaml

17 lines
429 B
YAML

apiVersion: v1
kind: Service
metadata:
name: {{ include "hangar.fullname" . }}-frontend
labels:
{{- include "hangar.labels" . | nindent 4 }}
spec:
type: {{ .Values.frontend.service.type }}
ports:
- port: {{ .Values.frontend.service.port }}
targetPort: http
protocol: TCP
name: http
selector:
{{- include "hangar.selectorLabels" . | nindent 4 }}
app.kubernetes.io/component: "frontend"