iceshrimp-legacy/chart/templates/service.yaml

16 lines
364 B
YAML
Raw Normal View History

2023-05-11 01:07:45 +02:00
apiVersion: v1
kind: Service
metadata:
2023-07-03 00:18:30 +02:00
name: {{ include "firefish.fullname" . }}
2023-05-11 01:07:45 +02:00
labels:
2023-07-03 00:18:30 +02:00
{{- include "firefish.labels" . | nindent 4 }}
2023-05-11 01:07:45 +02:00
spec:
type: {{ .Values.service.type }}
ports:
- port: {{ .Values.service.port }}
targetPort: http
protocol: TCP
name: http
selector:
2023-07-03 00:18:30 +02:00
{{- include "firefish.selectorLabels" . | nindent 4 }}