mirror of
https://github.com/arc53/DocsGPT
synced 2024-11-02 03:40:17 +00:00
25 lines
401 B
YAML
25 lines
401 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: docsgpt-api-service
|
|
spec:
|
|
selector:
|
|
app: docsgpt-api
|
|
ports:
|
|
- protocol: TCP
|
|
port: 80
|
|
targetPort: 7091
|
|
type: LoadBalancer
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: docsgpt-frontend-service
|
|
spec:
|
|
selector:
|
|
app: docsgpt-frontend
|
|
ports:
|
|
- protocol: TCP
|
|
port: 80
|
|
targetPort: 5173
|
|
type: LoadBalancer |