- Add admin-web/ with Vite + Vue 3 + Element Plus + Vue Router - Add 8 management pages: dashboard, channel subject/account, conversation, person, tag, send record (with test send), inbound flow - Add API client modules for account/channel/crm/send/flow - Add Dockerfile and nginx config for admin-web - Add Dockerfile for mci-server - Add docker-compose.app.yml for one-command app deployment - Add K8s deployment manifests for backend/admin-web/channel-service - Update scripts/local-up.sh with shared network and --with-apps option
31 lines
511 B
YAML
31 lines
511 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: mci-admin-web
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: mci-admin-web
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: mci-admin-web
|
|
spec:
|
|
containers:
|
|
- name: mci-admin-web
|
|
image: sino/mci-admin-web:latest
|
|
ports:
|
|
- containerPort: 80
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: mci-admin-web
|
|
spec:
|
|
selector:
|
|
app: mci-admin-web
|
|
ports:
|
|
- port: 80
|
|
targetPort: 80
|