Hangar/chart/templates/service-frontend.yaml

19 lines
499 B
YAML
Raw Normal View History

apiVersion: v1
kind: Service
metadata:
name: {{ include "hangar.fullname" . }}-frontend
labels:
{{- include "hangar.labels" . | nindent 4 }}
annotations:
service.kubernetes.io/topology-aware-hints: "auto"
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"