mirror of
https://github.com/TheAnachronism/docspell.git
synced 2024-11-13 02:31:10 +00:00
28 lines
392 B
YAML
28 lines
392 B
YAML
|
apiVersion: v1
|
||
|
kind: Service
|
||
|
metadata:
|
||
|
name: restserver
|
||
|
spec:
|
||
|
selector:
|
||
|
app: restserver
|
||
|
ports:
|
||
|
- name: http
|
||
|
protocol: TCP
|
||
|
port: 7880
|
||
|
targetPort: 7880
|
||
|
type: ClusterIP
|
||
|
---
|
||
|
apiVersion: v1
|
||
|
kind: Service
|
||
|
metadata:
|
||
|
name: joex
|
||
|
spec:
|
||
|
selector:
|
||
|
app: joex
|
||
|
ports:
|
||
|
- name: http
|
||
|
protocol: TCP
|
||
|
port: 7878
|
||
|
targetPort: 7878
|
||
|
type: ClusterIP
|