k8s-config/infra-cluster/gitea/manifests/services.yaml

26 lines
353 B
YAML

---
apiVersion: v1
kind: Service
metadata:
name: gitea-ssh
namespace: gitea
spec:
type: NodePort
selector:
app: gitea
ports:
- protocol: TCP
port: 2222
---
apiVersion: v1
kind: Service
metadata:
name: gitea-http
namespace: gitea
spec:
type: ClusterIP
selector:
app: gitea
ports:
- protocol: TCP
port: 3000