24 lines
299 B
YAML
24 lines
299 B
YAML
|
apiVersion: v1
|
||
|
kind: Service
|
||
|
metadata:
|
||
|
name: forgejo
|
||
|
spec:
|
||
|
ports:
|
||
|
- name: web
|
||
|
port: 3000
|
||
|
selector:
|
||
|
app: forgejo
|
||
|
---
|
||
|
apiVersion: v1
|
||
|
kind: Service
|
||
|
metadata:
|
||
|
name: forgejo-ssh
|
||
|
spec:
|
||
|
type: NodePort
|
||
|
ports:
|
||
|
- name: ssh
|
||
|
port: 22
|
||
|
nodePort: 30001
|
||
|
selector:
|
||
|
app: forgejo
|