Files
mark_word_fastapi/kubernetes/fastapi-chart/templates/service.yaml

15 lines
384 B
YAML

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