kind-lock-51965
01/03/2023, 5:35 AMstraight-shampoo-11124
01/03/2023, 5:38 AMstraight-shampoo-11124
01/03/2023, 5:39 AMkind-lock-51965
01/03/2023, 5:54 AMuser
01/03/2023, 6:50 AMhallowed-glass-14538
01/03/2023, 8:01 AMkind-lock-51965
01/03/2023, 8:15 AMkind-lock-51965
01/03/2023, 11:51 AMuser
01/03/2023, 4:06 PMminio-svc in the default namespace, you will need to use the endpoint <s3://minio-svc.default> (if there is a specific port such as 9000, you might need to use <s3://minio-svc.default:9000>)kind-lock-51965
01/04/2023, 4:37 AM{
"METAFLOW_DATASTORE_SYSROOT_S3": "s3://<bucketname>/metaflow",
"METAFLOW_DATATOOLS_SYSROOT_S3": "s3://<bucketname>/metaflow/data",
"S3_ENDPOINT_URL": "<http://127.0.0.1:9000>",
"METAFLOW_DEFAULT_DATASTORE": "s3"
}
But it repetitively gives me error "Access Denied: "s3://<bucketname>/metaflow/...".
I have also set access_key and secret_key as "minioadmin". I have also tried this after setting bucket to public but same error not sure what's wrong.user
01/04/2023, 5:17 AM<bucketname> needs to be an actual name of the bucket you create in Minio.
• The S3_ENDPOINT_URL set to 127.0.0.1 doesn't look right. You might need to set that to an actual IP address/DNS name of the minio service. On K8s, you could use kubectl get service to get the name or IP address of the minio service and use that.
This article has some pointers that might help: https://computingforgeeks.com/deploy-and-manage-minio-storage-on-kubernetes/kind-lock-51965
01/04/2023, 5:50 AM