Replies: 1 comment 1 reply
-
Your Minio server is probably configured only to be accessible within your cluster. If you have applications in other clusters that want to access it, you need to configure the appropriate network rules to expose access to the Minio service. Kubernetes provides multiple options for configuring external access to services. Some reference documentations on how to configure this: |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is there a way to connect my workflow artifact repository to a Minio server that is being hosted on a separate machine and not in the same kubernetes cluster as the one from where I am running my workflow?
All the tutorials that I've seen demonstrate how to set up an artifact repository on Minio when it's being served on the same kubernetes cluster. I would like, however, to set up my artifact repository on a Minio server that is running on a separate machine that is not in the kubernetes cluster (but is in my local network). After I set up my configmap and add the minio credentials I get the following error when I try to save an artifact:
msg="Failed to put file: Get \"http://172.17.0.2:9000/test/?location=\": dial tcp 172.17.0.2:9000: connect: connection refused"
Has anyone ran into this error before or know how to get this to work? Thanks!
Beta Was this translation helpful? Give feedback.
All reactions