mirror of
https://github.com/labring/FastGPT.git
synced 2026-05-08 01:08:43 +08:00
57a505f837
* chore: Rename service & container names for consistency in Docker configs (#6710) * chore: Rename container names for consistency in Docker configs * chore: Rename service names for consistency in Docker configs chore: Update OpenSandbox versions and image repositories (#6709) * chore: Update OpenSandbox versions and image repositories * yml version * images * init yml * port --------- Co-authored-by: archer <545436317@qq.com> refactor(chat): optimize sandbox status logic and decouple UI/Status hooks (#6713) * refactor(chat): optimize sandbox status logic and decouple UI/Status hooks * fix: useRef, rename onClose to afterClose Update .env.template (#6720) aiproxy默认的请求地址改成http协议 feat: comprehensive agent skill management and sandbox infrastructure optimization - Skill System: Implemented a full skill management module including CRUD operations, folder organization, AI-driven skill generation, and versioning (switch/update). - Sandbox Infrastructure: Introduced 'volume-manager' for PVC and Docker volume lifecycle management, replacing the MinIO sync-agent for better data persistence. - Workflow Integration: Enhanced the Agent node to support skill selection and configuration, including new UI components and data normalization. - Permission Management: Added granular permission controls for skills, supporting collaborators, owner transfers, and permission inheritance. - UI/UX: Added a dedicated Skill dashboard, sandbox debug interface (terminal, logs, and iframe proxy), and comprehensive i18n support. - Maintenance: Migrated Docker services to named volumes, optimized sandbox instance limits, and improved error handling for sandbox providers. Co-authored-by: chanzhi82020 <chenzhi@sangfor.com.cn> Co-authored-by: lavine77 Signed-off-by: Jon <ljp@sangfor.com.cn> feat: hide skill prettier * perf: hide skill code * fix: ts * lock * perf: tool code * fix: ts * lock * fix: test * fix: openapi * lock * fix: test * null model --------- Co-authored-by: archer <545436317@qq.com>
112 lines
2.4 KiB
YAML
112 lines
2.4 KiB
YAML
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: volume-manager-secret
|
|
namespace: opensandbox
|
|
type: Opaque
|
|
stringData:
|
|
auth-token: changeme
|
|
---
|
|
apiVersion: storage.k8s.io/v1
|
|
kind: StorageClass
|
|
metadata:
|
|
name: fastgpt-local
|
|
provisioner: rancher.io/local-path
|
|
reclaimPolicy: Delete
|
|
volumeBindingMode: WaitForFirstConsumer
|
|
---
|
|
apiVersion: v1
|
|
kind: ServiceAccount
|
|
metadata:
|
|
name: volume-manager
|
|
namespace: opensandbox
|
|
---
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
|
kind: Role
|
|
metadata:
|
|
name: volume-manager
|
|
namespace: opensandbox
|
|
rules:
|
|
- apiGroups: [""]
|
|
resources: ["persistentvolumeclaims"]
|
|
verbs: ["get", "list", "create", "delete"]
|
|
---
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
|
kind: RoleBinding
|
|
metadata:
|
|
name: volume-manager
|
|
namespace: opensandbox
|
|
subjects:
|
|
- kind: ServiceAccount
|
|
name: volume-manager
|
|
namespace: opensandbox
|
|
roleRef:
|
|
kind: Role
|
|
name: volume-manager
|
|
apiGroup: rbac.authorization.k8s.io
|
|
---
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: volume-manager
|
|
namespace: opensandbox
|
|
labels:
|
|
app: volume-manager
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: volume-manager
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: volume-manager
|
|
spec:
|
|
serviceAccountName: volume-manager
|
|
containers:
|
|
- name: volume-manager
|
|
image: fastgpt-volume-manager:latest
|
|
imagePullPolicy: IfNotPresent
|
|
ports:
|
|
- containerPort: 3001
|
|
env:
|
|
- name: VM_RUNTIME
|
|
value: kubernetes
|
|
- name: VM_K8S_NAMESPACE
|
|
value: opensandbox
|
|
- name: VM_K8S_PVC_STORAGE_CLASS
|
|
value: fastgpt-local
|
|
- name: VM_LOG_LEVEL
|
|
value: info
|
|
- name: VM_AUTH_TOKEN
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: volume-manager-secret
|
|
key: auth-token
|
|
readinessProbe:
|
|
httpGet:
|
|
path: /health
|
|
port: 3001
|
|
initialDelaySeconds: 3
|
|
periodSeconds: 10
|
|
resources:
|
|
requests:
|
|
cpu: 50m
|
|
memory: 64Mi
|
|
limits:
|
|
cpu: 200m
|
|
memory: 128Mi
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: volume-manager
|
|
namespace: opensandbox
|
|
spec:
|
|
selector:
|
|
app: volume-manager
|
|
ports:
|
|
- port: 3001
|
|
targetPort: 3001
|
|
type: ClusterIP
|