oecis-charts/charts/vikunja/templates/service.yaml

16 lines
361 B
YAML
Raw Normal View History

2023-08-27 13:38:38 +00:00
apiVersion: v1
kind: Service
metadata:
2024-02-21 16:57:53 +00:00
name: {{ include "vikunja.fullname" . }}
2023-08-27 13:38:38 +00:00
labels:
{{- include "vikunja.labels" . | nindent 4 }}
spec:
2024-02-21 16:57:53 +00:00
type: {{ .Values.service.type }}
2023-08-27 13:38:38 +00:00
ports:
2024-02-21 16:57:53 +00:00
- port: {{ .Values.service.port }}
2023-08-27 13:38:38 +00:00
targetPort: http
protocol: TCP
name: http
selector:
{{- include "vikunja.selectorLabels" . | nindent 4 }}