minio-manager¶
Declare what MinIO buckets, IAM policies, ILM policies you want, and let MinIO Manager do the work.
- GitHub repository: https://github.com/alveel/minio-manager/
- Documentation https://alveel.github.io/minio-manager/
Description¶
The concept for management is to have so-called "bucket groups".
Each bucket group is managed by an account that only has access to buckets in that group.
It should be noted that this is explicitly intended for the creation and updating of resources in MinIO. It does not delete any resources anywhere.
Requirements¶
- Python (3.9 or newer)
- PDM
- MinIO Client
Getting started with your project¶
Install the environment and the pre-commit hooks with
make install
You are now ready to start development on your project! The CI/CD pipeline will be triggered when you open a pull request, merge to main, or when you create a new release.
To quickly configure a local development MinIO, you can run
make setup-test-environment
Note: requires Podman!
When you are finished, run
make stop-test-environment
Note that the created secrets-insecure.yaml
will not be removed automatically or overwritten with the setup command.
To finalize the set-up for publishing to PyPi or Artifactory, see here. For activating the automatic documentation with MkDocs, see here. To enable the code coverage reports, see here.
To do features¶
Check the open enhancement issues.
Repository initiated with fpgmaas/cookiecutter-pdm.