alauda / kubeflow-chart

Kubeflow helm chart
Apache License 2.0
133 stars 24 forks source link

This step is in Error state with this message: Error (exit code 1): failed to create new S3 client: Endpoint: : does not follow ip address or domain name standards. #14

Open xinge-1 opened 1 year ago

xinge-1 commented 1 year ago

S3的配置初始化这边没有初始化s3的配置 需要手动指定

typhoonzero commented 1 year ago

请描述具体的操作步骤和报错位置,便于排查

xinge-1 commented 1 year ago

使用的是minio,检查configmaps workflow-controller-configmap 初始化的时候是否将minio配置填写正确 archiveLogs: true s3: endpoint: "minio-service.kubeflow:9000" bucket: "mlpipeline"

ducnguyenhuynh commented 1 year ago

@xinge-1 In templates/platform-agnostic-multi-user.yaml change lines 1849 -> 1850 to:

endpoint: "{{ .Values.minio.minioHost }}:{{ .Values.minio.minioPort }}"
bucket: "{{ .Values.minio.minioKFPBucket }}"