20 lines
495 B
YAML
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" . }}
|