Files
homelab/k8s/applications/dev-tools/templates/service.yaml
T

16 lines
385 B
YAML
Raw Normal View History

apiVersion: v1
kind: Service
metadata:
name: {{ include "claude-terminal.fullname" . }}
labels:
{{- include "claude-terminal.labels" . | nindent 4 }}
spec:
type: {{ .Values.service.type }}
ports:
- port: {{ .Values.service.port }}
targetPort: http
protocol: TCP
name: http
selector:
{{- include "claude-terminal.selectorLabels" . | nindent 4 }}