16 lines
361 B
YAML
Raw Normal View History

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