helm-charts/web-static/templates/service.yaml
2023-07-30 14:36:06 +02:00

15 lines
370 B
YAML

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