MinIO offers high-performance, S3 compatible object storage. Native to Kubernetes, MinIO is the only object storage suite available on every public cloud, every Kubernetes distribution, the private cloud and the edge. MinIO is software-defined and is 100% open source under GNU AGPL v3.
Questions tagged [minio]
906 questions
0
votes
0 answers
How to deploy Ingress to expose MinIO cluster outside
I have setup MinIO in kubernetes (k3s) - one node implementation.
Services
apiVersion: v1
kind: Service
metadata:
name: minio
namespace: minio
labels:
app: minio
spec:
clusterIP: None
selector:
app: minio
ports:
- port: 9011
…

e7lT2P
- 1,635
- 5
- 31
- 57
0
votes
1 answer
Distributed MinIO Self-Contained Example Fails: "Server expects 'storage' API version 'v40', instead found 'v40'"
I'm trying to create a self-contained example of using MinIO in a distributed sense and I'm running into errors which I cannot find any solutions for.
I also can't find any self-contained example of how to use MinIO in the distributed mode with both…

iAdjunct
- 2,739
- 1
- 18
- 27
0
votes
0 answers
How to create default bucket for minio within github actions using minio:edge-cicd?
I want to add minio service in my github action for my end-to-tests. (It should mimick an Amazon S3 Bucket storage.)
I want to use the minio/minio:edge-cicd docker image.
In my yaml-file I have a job:
jobs:
e2e:
...
services:
minio:
…

k0pernikus
- 60,309
- 67
- 216
- 347
0
votes
1 answer
Cannot connect to minIO via spark operator on Kubernetes - Connection refused
getting
INFO AmazonHttpClient: Unable to execute HTTP request: Connection refused (Connection refused)
java.net.ConnectException: Connection refused (Connection refused)
when trying to read data from minIO via spark. I am running my spark jar via…

Tomáš Sedloň
- 153
- 1
- 9
0
votes
1 answer
MinIO Authenticate User For Specific Bucket
i am new for MinIO Object Storage.
I want to create a user that can only read and write into x bucket.
I use the default read and write policy but edit the resource into my bucket like below:
{
"Version": "2012-10-17",
"Statement": [
{
…
0
votes
0 answers
How can i download a file from minio server URL
This is the URL I am getting from response which is minion encoded
Here I am trying to decode the URL which I got from the API response which is encoded by minio
LoadingDialog.showLoadingDialog(getActivity(), "");
…

Md Aamir
- 1
- 1
- 1
0
votes
1 answer
Convert CSV to JSON, split to x JSON files and store the result to a minio bucket
Inside of a function I have the following code that loads a CSV, converts it to JSON and uploads the converted file to a minio bucket.
df = pd.read_csv('data.csv').to_json().encode("utf-8")
client.put_object(
"bucket",
…

Andreas P
- 3
- 1
0
votes
1 answer
Is there an implemented way to use a kubeflow pipeline's output outside the pipeline?
I'm using local kubeflow pipelines for building a continuous machine learning test project. I have one pipeline that preprocess the data using TFX, and it saves the outputs automatically to minio. Outside of this pipeline, I want to train the model…

AnoderPersona
- 3
- 3
0
votes
1 answer
AWS S3 policy restrict folder delete
I have a S3 bucket named "uploads" with this structure:
uploads|
|_products
|_users
|_categories
|_...
I want restrict users from deleting folders (products, users, ...) but they can delete objects inside those folers.…

HBasiri
- 343
- 1
- 6
- 16
0
votes
1 answer
MinIO | Failed to establish a new connection: [Errno -2] Name or service not known
Goal: download all files within a folder, in a MinIO bucket.
Since I want to dynamically download all files in a folder, I use:
objs = list(client.list_objects(bucket, recursive=True)).sort()
That way, I can iterate over each file name for download…

DanielBell99
- 896
- 5
- 25
- 57
0
votes
1 answer
I am trying to setup a minio server with traefik but Share URLs are pointing to the internal network ip instead my domain
I have the exact same setup and issue from this link Minio install behind Traefik
I was looking to fix this sharing URL actually pointing to some docker intenal URL
Obviously you must tell minio server what domain generated URLs should be pointint…

mrcbns
- 73
- 1
- 6
0
votes
1 answer
How to download all files from MinIO bucket in python by only using bucket name .....& no file name
I need to download all the files from the MinIO bucket into the certain local folder Dir. But, I do not have the names of the files which is inside that bucket.

Aryan Saini
- 11
- 1
- 1
0
votes
1 answer
Minio data transfer
I have a broken minio cluster and don't have access to the control plane. I still have access to the filesystem directory with data and buckets, access to .minio-sys where the broken minio config and other cluster data are located. How can I migrate…

Владислав Холод
- 1
- 1
0
votes
1 answer
MinIO HTTPConnectionPool [Errno -2] Name or service not known
Goal: run Python program with MinIO access.
I can login via. Browser, and can upload/ edit files and am disconnected from VPN.
Ubuntu WSL can't see any sockets, such as my VPN when connected.
Powershell:
PS C:\> wsl -l -v
NAME STATE VERSION
* Ubuntu…

DanielBell99
- 896
- 5
- 25
- 57
0
votes
1 answer
On which scenarios firewall is not supported by the nodes?
I'm trying to run a Minio Cluster using the Jelastic template, however when attempting to activate the firewall on one of the nodes I'm greeted with the message "Firewall is not supported on this node."
screenshot

John Terramoto
- 3
- 1