Files
k8scd/sogo/templates/service.yaml
T
2026-01-26 17:40:22 +01:00

16 lines
344 B
YAML

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