Files
homelab-config/homelab-services/gitea/k3s/service.yaml
T
2026-08-24 17:30:49 -05:00

25 lines
376 B
YAML

# point to the deployment
apiVersion: v1
kind: Service
metadata:
name: gitea
namespace: gitea
spec:
selector:
app: gitea
ports:
- name: http
port: 3000
targetPort: http
nodePort: 30081
protocol: TCP
- name: ssh
port: 22 # pod port
targetPort: ssh
nodePort: 30222 # external
protocol: TCP
type: NodePort