MinIO
MinIO is a high-performance, S3-compatible object storage server. It is ideal for storing unstructured data such as photos, videos, log files, and ML model artifacts.
How to run it
Create a volume for object storage:
cgc volume create -s 5 minio-volume
Then create a MinIO instance with the volume attached:
cgc db create --name minio01 -c 2 -m 4 -v minio-volume minio
The MinIO Console (web UI) will be available at:
https://minio01.apps.<cluster-name>.comtegra.cloud
Use the app token received after creation as the MINIO_ROOT_PASSWORD and admin as the MINIO_ROOT_USER.
Default configuration
MINIO_ROOT_USER=admin: Default root user.MINIO_ROOT_PASSWORD: Set to the CGCapp_tokenyou receive after creating the database.MINIO_CONSOLE_ADDRESS=:9090: Binds the console to port 9090.
info
If you wish to override MINIO_ROOT_PASSWORD and keep it displayed correctly during cgc db list -d, use the CGC flag -ce app_token=YOUR_PASSWORD.