Any pointer to the right direction will be helpful...
# flyte-support
w
Any pointer to the right direction will be helpfull.
A quick update, I have managed to get access to minio console. Then I updated the bucket policy and I made the bucket public. After making it public I can access it using s3fs
Copy code
s3_file = s3fs.S3FileSystem(
    anon=True,
    use_ssl=False,
    config_kwargs={
        "signature_version": "s3v4",
    },
    client_kwargs={
        "endpoint_url": "<http://127.0.0.1:9000>",
    },
)

<http://s3_file.ls|s3_file.ls>(s3_file_path)
This command is listing the file in the bucket but after re-runing hte workflow it still getting me the error
f
@wonderful-apple-6051 how are you running the workflow. Also you installed things - are you running
flytectl demo start
or did you helm deploy
also the error message is that when you run
pyflyte run ...
or when running on the cluster?
w
Hey.. I install flyte with the helm chart..
I am creating my workflow with
pyflyte register workflows/clustering.py
and then I am going to the UI and I do launch workflow..
After a few minute I get that errror from the ui and from the pod.
f
Got it
w
It seems to be working now... After changing the bucket permission to public it is working.
Thank you..
f
Hmm I guess the default username password should work
a
@wonderful-apple-6051 thanks for sharing. Let us know any other finding