Files
infrastructure/clusters/cl01tl/helm/garage/templates/service.yaml
2026-04-23 17:26:26 -05:00

32 lines
669 B
YAML

apiVersion: v1
kind: Service
metadata:
name: garage-main
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: garage-main
app.kubernetes.io/service: garage-main
{{- include "custom.labels" . | nindent 4 }}
spec:
ports:
- name: admin
port: 3903
protocol: TCP
targetPort: 3903
- name: rpc
port: 3901
protocol: TCP
targetPort: 3901
- name: s3
port: 3900
protocol: TCP
targetPort: 3900
- name: web
port: 3902
protocol: TCP
targetPort: 3902
selector:
app.kubernetes.io/name: garage
app.kubernetes.io/instance: garage
garage-type: server