98f73c5bea
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>
41 lines
737 B
YAML
41 lines
737 B
YAML
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
|
|
resources:
|
|
- ../k3s
|
|
|
|
patches:
|
|
- target:
|
|
version: v1
|
|
kind: Service
|
|
name: minio
|
|
patch: |-
|
|
$patch: delete
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: minio
|
|
- target:
|
|
group: apps
|
|
version: v1
|
|
kind: StatefulSet
|
|
name: minio
|
|
patch: |-
|
|
$patch: delete
|
|
apiVersion: apps/v1
|
|
kind: StatefulSet
|
|
metadata:
|
|
name: minio
|
|
- target:
|
|
group: batch
|
|
version: v1
|
|
kind: Job
|
|
name: minio-init
|
|
patch: |-
|
|
$patch: delete
|
|
apiVersion: batch/v1
|
|
kind: Job
|
|
metadata:
|
|
name: minio-init
|
|
- path: patches/object-storage-env.yaml
|