1
0
mirror of https://github.com/alexandrev/xslt-lab.git synced 2026-09-20 04:23:16 +00:00
Files
xslt-lab/charts/xslt-playground/templates/backend-service.yaml
T

18 lines
463 B
YAML

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