feat(objectstorage): add Aliyun OSS support and auto-detect provider in deploy workflows
Introduces Aliyun OSS as an alternative to MinIO; deploy scripts and CI workflows now read object_storage.provider from config and conditionally include or skip MinIO resources in both Docker Compose and k3s paths. Also adds ops scheduler domain and its migration tables. Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,59 @@
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: tenant-api
|
||||
spec:
|
||||
template:
|
||||
spec:
|
||||
containers:
|
||||
- name: tenant-api
|
||||
env:
|
||||
- name: OBJECT_STORAGE_ACCESS_KEY
|
||||
$patch: delete
|
||||
- name: OBJECT_STORAGE_SECRET_KEY
|
||||
$patch: delete
|
||||
---
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: worker-generate
|
||||
spec:
|
||||
template:
|
||||
spec:
|
||||
containers:
|
||||
- name: worker-generate
|
||||
env:
|
||||
- name: OBJECT_STORAGE_ACCESS_KEY
|
||||
$patch: delete
|
||||
- name: OBJECT_STORAGE_SECRET_KEY
|
||||
$patch: delete
|
||||
---
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: kol-assist-worker
|
||||
spec:
|
||||
template:
|
||||
spec:
|
||||
containers:
|
||||
- name: kol-assist-worker
|
||||
env:
|
||||
- name: OBJECT_STORAGE_ACCESS_KEY
|
||||
$patch: delete
|
||||
- name: OBJECT_STORAGE_SECRET_KEY
|
||||
$patch: delete
|
||||
---
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: scheduler
|
||||
spec:
|
||||
template:
|
||||
spec:
|
||||
containers:
|
||||
- name: scheduler
|
||||
env:
|
||||
- name: OBJECT_STORAGE_ACCESS_KEY
|
||||
$patch: delete
|
||||
- name: OBJECT_STORAGE_SECRET_KEY
|
||||
$patch: delete
|
||||
Reference in New Issue
Block a user