1234567891011121314151617181920212223 |
- storageClasses:
- - name: juicefs-sc
- enabled: true
- reclaimPolicy: Retain
- # JuiceFS 文件系统认证信息
- # 如果已经提前创建好文件系统,则只需填写 `name` 和 `metaurl` 这两项
- backend:
- name: "<name>" # JuiceFS 文件系统名
- metaurl: "<meta-url>" # 元数据引擎的 URL
- storage: "<storage-type>" # 对象存储类型 (例如 s3、gcs、oss、cos)
- accessKey: "<access-key>" # 对象存储的 Access Key
- secretKey: "<secret-key>" # 对象存储的 Secret Key
- bucket: "<bucket>" # 存储数据的桶路径
- # 设置 Mount Pod 时区,默认为 UTC。
- # envs: "{TZ: Asia/Shanghai}"
- mountPod:
- resources: # Mount pod 的资源配置
- requests:
- cpu: "1"
- memory: "1Gi"
- limits:
- cpu: "5"
- memory: "5Gi"
|