summaryrefslogtreecommitdiff
path: root/charts/llm-app/templates/service.yaml
blob: 6350996938ddc4e37ac12e975b8e3b00bb4a1a3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
apiVersion: v1
kind: Service
metadata:
  name: {{ include "llm-app.fullname" . }}
  labels: {{- include "llm-app.selectorLabels" . | nindent 4 }}
spec:
  type: {{ .Values.service.type }}
  ports:
    - name: http
      port: {{ .Values.service.port }}
      targetPort: http
      protocol: TCP
  selector: {{- include "llm-app.selectorLabels" . | nindent 4 }}