notion2ical/helm/templates/service.yaml

16 lines
374 B
YAML
Raw Normal View History

2022-08-13 07:39:14 +00:00
apiVersion: v1
kind: Service
metadata:
2022-08-13 07:50:18 +00:00
name: {{ include "notion2ical.fullname" . }}
2022-08-13 07:39:14 +00:00
labels:
2022-08-13 07:50:18 +00:00
{{- include "notion2ical.labels" . | nindent 4 }}
2022-08-13 07:39:14 +00:00
spec:
type: {{ .Values.service.type }}
ports:
- port: {{ .Values.app.http.port }}
targetPort: http
protocol: TCP
name: http
selector:
2022-08-13 07:50:18 +00:00
{{- include "notion2ical.selectorLabels" . | nindent 4 }}