Files
homelab/k8s/apps/gitea/service.yaml
2025-04-12 19:26:31 +01:00

28 lines
359 B
YAML

---
apiVersion: v1
kind: Service
metadata:
name: gitea
namespace: gitea
spec:
selector:
app: gitea
ports:
- protocol: TCP
port: 80
targetPort: 3000
---
apiVersion: v1
kind: Service
metadata:
name: gitea-ssh
namespace: gitea
spec:
type: LoadBalancer
ports:
- port: 30022
targetPort: 22
selector:
app: gitea