# Install MinIO

## Helm install minio (toy setup)

```bash
%%bash
kubectl create ns minio-system
helm repo add minio https://charts.min.io/
helm install --namespace minio-system \
    --set resources.requests.memory=512Mi \
    --set replicas=1 \
    --set persistence.enabled=false \
    --set mode=standalone \
    --set rootUser=minioadmin,rootPassword=minioadmin \
    --generate-name minio/minio
```

Use instructions generated by Helm to get the pod name and port-forward to localhost.

## Install MinIO CLI client tool

Install minio using `go get`:

```bash
%%bash
GO111MODULE=on go get github.com/minio/mc
```

Or follow steps relevant to your platform from official [documentation](https://docs.min.io/docs/minio-client-quickstart-guide.html).

## Configure mc client to talk to your cluster

```bash
%%bash
mc config host add minio-seldon http://localhost:8090 minioadmin minioadmin
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.seldon.ai/seldon-core-1/tutorials/notebooks/minio_setup.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
