This is an automated email from the ASF dual-hosted git repository. chufenggao pushed a commit to branch Switch-to-use-minio-as-default-storage-in-k8s in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git
commit ff19205c1610bcd3aafc46e1a9fe5cd93a315bde Author: EricGao888 <[email protected]> AuthorDate: Wed Jan 11 11:42:06 2023 +0800 Use minio as defaut storage if deployed in k8s --- deploy/kubernetes/dolphinscheduler/values.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deploy/kubernetes/dolphinscheduler/values.yaml b/deploy/kubernetes/dolphinscheduler/values.yaml index c5820cf898..62d88f742b 100644 --- a/deploy/kubernetes/dolphinscheduler/values.yaml +++ b/deploy/kubernetes/dolphinscheduler/values.yaml @@ -58,7 +58,7 @@ mysql: storageClass: "-" minio: - enabled: false + enabled: true auth: rootUser: minioadmin rootPassword: minioadmin @@ -100,7 +100,7 @@ conf: data.basedir.path: /tmp/dolphinscheduler # resource storage type: HDFS, S3, NONE - resource.storage.type: NONE + resource.storage.type: S3 # resource store on HDFS/S3 path, resource file will store to this base path, self configuration, please make sure the directory exists on hdfs and have read write permissions. "/dolphinscheduler" is recommended resource.storage.upload.base.path: /dolphinscheduler
