Can someone help me in this. Does flyte copilot ...
# flyte-support
m
Can someone help me in this. Does flyte copilot only support AWS Endpoints? Trying to use containertask using a minio endpoint but getting nocredential provider error in copilot-downloader container. I have set the required env variables in propeller config map, but it is not inducing to copilot environment variables. The main container has the correct env variables though.
f
It should work for minio but you need to supply creds it uses the s3 api
Infact sandbox is minio
m
I have used flyte-core for installation. @freezing-airport-6809
How do I supply creds to it
a
@magnificent-byte-14700 with flyte-core it should be
Copy code
configmap:
  copilot:
    plugins:
      k8s:
        default-env-vars:
          - FLYTE_AWS_ENDPOINT: "<http://minio.flyte.svc.cluster.local:9000>" #or whatever endpoint
          - FLYTE_AWS_ACCESS_KEY_ID: "YOUR_KEY"
          - FLYTE_AWS_SECRET_ACCESS_KEY: "YOUR_SECRET_KEY"
👍 1
m
@average-finland-92144 , I fixed the issue.. I am able to run containertasks successfully now. The next issue I have is copilot uploader seems to take time even to write small outputs( around 10s and in some cases 30s).. is that expected or is some configuration wrong from my end?