Files
Schulung_Docker_k8s/traefik/web-helm/templates/service.yaml
nutzer26 8ee05cb88d added
2022-12-16 12:21:57 +01:00

16 lines
364 B
YAML

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