trashposs/chart/templates/service.yaml

16 lines
367 B
YAML
Raw Normal View History

2023-05-11 01:07:45 +02:00
apiVersion: v1
kind: Service
metadata:
2024-04-06 23:55:59 +02:00
name: {{ include "trashposs.fullname" . }}
2023-05-11 01:07:45 +02:00
labels:
2024-04-06 23:55:59 +02:00
{{- include "trashposs.labels" . | nindent 4 }}
2023-05-11 01:07:45 +02:00
spec:
type: {{ .Values.service.type }}
ports:
- port: {{ .Values.service.port }}
targetPort: http
protocol: TCP
name: http
selector:
2024-04-06 23:55:59 +02:00
{{- include "trashposs.selectorLabels" . | nindent 4 }}