26 lines
321 B
YAML
26 lines
321 B
YAML
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: gitea
|
|
spec:
|
|
selector:
|
|
app: gitea
|
|
ports:
|
|
- protocol: TCP
|
|
port: 80
|
|
targetPort: 3000
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: gitea-ssh
|
|
spec:
|
|
type: LoadBalancer
|
|
ports:
|
|
- port: 30022
|
|
targetPort: 22
|
|
selector:
|
|
app: gitea
|
|
|