84 lines
1.1 KiB
YAML
84 lines
1.1 KiB
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: motomo
|
|
spec:
|
|
type: ClusterIP
|
|
ports:
|
|
- port: 8080
|
|
targetPort: 8080
|
|
---
|
|
apiVersion: v1
|
|
kind: Endpoints
|
|
metadata:
|
|
name: motomo
|
|
subsets:
|
|
- addresses:
|
|
- ip: 192.168.0.200
|
|
ports:
|
|
- port: 8080
|
|
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: immich
|
|
spec:
|
|
type: ClusterIP
|
|
ports:
|
|
- port: 2283
|
|
targetPort: 2283
|
|
---
|
|
apiVersion: v1
|
|
kind: Endpoints
|
|
metadata:
|
|
name: immich
|
|
subsets:
|
|
- addresses:
|
|
- ip: 192.168.0.200
|
|
ports:
|
|
- port: 2283
|
|
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: aichat
|
|
spec:
|
|
type: ClusterIP
|
|
ports:
|
|
- port: 3002
|
|
targetPort: 3002
|
|
---
|
|
apiVersion: v1
|
|
kind: Endpoints
|
|
metadata:
|
|
name: aichat
|
|
subsets:
|
|
- addresses:
|
|
- ip: 192.168.0.200
|
|
ports:
|
|
- port: 3002
|
|
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: offline
|
|
spec:
|
|
type: ClusterIP
|
|
ports:
|
|
- port: 7000
|
|
targetPort: 7000
|
|
---
|
|
apiVersion: v1
|
|
kind: Endpoints
|
|
metadata:
|
|
name: offline
|
|
subsets:
|
|
- addresses:
|
|
- ip: 192.168.0.200
|
|
ports:
|
|
- port: 7000
|
|
|
|
|