Files
timeclock/helm/chart/templates/service.yaml

16 lines
309 B
YAML
Raw Normal View History

2026-05-19 18:14:39 -04:00
apiVersion: v1
kind: Service
metadata:
name: {{ include "timeclock.fullname" . }}
namespace: {{ .Values.namespace }}
spec:
type: {{ .Values.service.type }}
selector:
app: {{ include "timeclock.name" . }}
ports:
- protocol: TCP
port: {{ .Values.service.port }}
targetPort: 5000