You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by to...@apache.org on 2020/12/14 16:55:12 UTC

[libcloud] branch trunk updated (229d3dc -> 91272d1)

This is an automated email from the ASF dual-hosted git repository.

tomaz pushed a change to branch trunk
in repository https://gitbox.apache.org/repos/asf/libcloud.git.


    from 229d3dc  Merge pull request #1527 from apache/github_actions_take_2
     new 028d4cc  Add WIP MinIO storage driver.
     new 7e1a7af  Remove test code.
     new 278d710  Update S3 driver to correctly throw "ContainerAlreadyExists" error in case contain creation fails because container with this name already exists.
     new 3ca2ccc  Fix lint.
     new c44c626  Add additional test case.
     new affb791  Add changelog entries.
     new 67795df  Re-generate provider tables, add docs for minio provider.
     new 85d6bbb  Fix provider table generation for Linode Compute and DNS driver, re-generate tables.
     new 91272d1  Merge pull request #1528 from Kami/minio_storage_driver

The 8496 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 CHANGES.rst                                        |  13 ++++
 contrib/generate_provider_feature_matrix_table.py  |   8 +++
 docs/_static/images/provider_logos/minio.png       | Bin 0 -> 11496 bytes
 docs/compute/_supported_methods_block_storage.rst  |   2 +-
 .../_supported_methods_image_management.rst        |   2 +-
 docs/compute/_supported_methods_main.rst           |   2 +-
 .../docker_example.py}                             |  17 ++---
 docs/storage/_supported_methods_cdn.rst            |   2 +
 docs/storage/_supported_methods_main.rst           |   2 +
 docs/storage/_supported_providers.rst              |   2 +
 docs/storage/drivers/minio.rst                     |  27 ++++++++
 libcloud/storage/drivers/minio.py                  |  61 ++++++++++++++++++
 libcloud/storage/drivers/s3.py                     |   9 ++-
 libcloud/storage/providers.py                      |   2 +
 libcloud/storage/types.py                          |   1 +
 libcloud/test/storage/test_minio.py                |  70 +++++++++++++++++++++
 16 files changed, 209 insertions(+), 11 deletions(-)
 create mode 100644 docs/_static/images/provider_logos/minio.png
 copy docs/examples/storage/{s3/multipart_large_file_upload.py => minio/docker_example.py} (61%)
 create mode 100644 docs/storage/drivers/minio.rst
 create mode 100644 libcloud/storage/drivers/minio.py
 create mode 100644 libcloud/test/storage/test_minio.py