Files
GenAIExamples/DocSum/kubernetes/helm-charts/templates/service.yaml
letonghan 7d779513f5 add docsum helm charts
Signed-off-by: letonghan <letong.han@intel.com>
2024-11-08 16:04:29 +08:00

20 lines
495 B
YAML

# Copyright (C) 2024 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
apiVersion: v1
kind: Service
metadata:
name: {{ include "docsum.fullname" . }}
labels:
{{- include "docsum.labels" . | nindent 4 }}
spec:
type: {{ .Values.service.type }}
ports:
- port: {{ .Values.service.port }}
targetPort: {{ .Values.port }}
protocol: TCP
name: docsum
selector:
{{- include "docsum.selectorLabels" . | nindent 4 }}
app: {{ include "docsum.fullname" . }}