Object storage for Open edX with MinIO
This is a plugin for Tutor that provides S3-like object storage for Open edX platforms. It's S3, but without the dependency on AWS. This is achieved thanks to MinIO, an open source project that provides object storage with an API compatible with S3.
In particular, this plugin is essential for Kubernetes deployment.
The plugin is currently bundled with the binary releases of Tutor. If you have installed Tutor from source, you will have to install this plugin from source, too:
pip install tutor-minio
Then, to enable this plugin, run:
tutor plugins enable minio
OPENEDX_AWS_ACCESS_KEY` (default: ``"openedx"
)OPENEDX_AWS_SECRET_ACCESS_KEY` (default: ``"{{ 24|random_string }}"
)MINIO_BUCKET_NAME
(default:"openedx"
)MINIO_FILE_UPLOAD_BUCKET_NAME
(default:"openedxuploads"
)MINIO_HOST
(default:"minio.{{ LMS_HOST }}"
)MINIO_DOCKER_IMAGE
(default:"{{ DOCKER_REGISTRY }}overhangio/minio:{{ MINIO_VERSION }}"
)
These values can be modified with tutor config save --set PARAM_NAME=VALUE
commands.
MINIO_GATEWAY
(default:null
)
This is an experimental feature to run the MinIO server as a gateway to another object storage solution, such as S3 or Azure.
It is assumed that the MINIO_HOST
DNS record points to your server. When running MinIO on your laptop, MinIO will be available at http://minio.local.overhang.io. In development mode, the MinIO interface will be available at http://minio.local.overhang.io:9000.
The MinIO web UI can be accessed at http://<MINIO_HOST>. The credentials for accessing the UI can be obtained with:
tutor config printvalue OPENEDX_AWS_ACCESS_KEY tutor config printvalue OPENEDX_AWS_SECRET_ACCESS_KEY