helm-charts/headscale-ui/templates/service.yaml

20 lines
488 B
YAML
Raw Permalink Normal View History

2023-07-30 14:37:15 +02:00
apiVersion: v1
kind: Service
metadata:
name: {{ include "headscale-ui.fullname" . }}
labels:
{{- include "headscale-ui.labels" . | nindent 4 }}
spec:
type: {{ .Values.service.type }}
ports:
2024-05-30 16:26:40 +02:00
- port: {{ .Values.service.port.http }}
2023-07-30 14:37:15 +02:00
targetPort: http
protocol: TCP
name: http
2024-05-30 16:26:40 +02:00
- port: {{ .Values.service.port.https }}
targetPort: https
protocol: TCP
name: https
2023-07-30 14:37:15 +02:00
selector:
{{- include "headscale-ui.selectorLabels" . | nindent 4 }}