Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for Azure Blob Storage connection string authentication #4649

Merged
merged 21 commits into from
Mar 21, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
18e4fd2
Add support for Azure Blob Storage connection string authentication
suzusuzu May 20, 2022
9f26d73
Add Connection string document for Azure Blob Authorization type
suzusuzu May 20, 2022
d685623
modify CHANGELOG
suzusuzu May 20, 2022
0647d22
Merge branch 'develop' of https://github.com/openvinotoolkit/cvat int…
suzusuzu Aug 22, 2022
95e852f
Merge branch 'develop' of github.com:opencv/cvat into feature/blob_co…
suzusuzu Aug 30, 2022
10fcd96
Merge branch 'develop' into feature/blob_connection_string
bsekachev Sep 12, 2022
b9dcd85
Merge branch 'develop' of https://github.com/openvinotoolkit/cvat int…
suzusuzu Oct 13, 2022
6986367
Merge branch 'develop' into feature/blob_connection_string
suzusuzu Oct 19, 2022
ccfba07
Merge branch 'develop' into feature/blob_connection_string
nmanovic Nov 17, 2022
dcdeeb3
Merge branch 'develop' into feature/blob_connection_string
nmanovic Dec 10, 2022
a4f2857
Merge branch 'develop' into feature/blob_connection_string
Marishka17 Jan 17, 2023
80abf0e
Merge branch 'develop' into feature/blob_connection_string
nmanovic Jan 18, 2023
e628894
Resolve conflicts
Marishka17 Mar 13, 2023
8923d8c
Fix typo
Marishka17 Mar 13, 2023
a6d2b34
Add migration
Marishka17 Mar 13, 2023
70bfdbc
Apply comments
Marishka17 Mar 13, 2023
e1cd5fd
Merge branch 'develop' into feature/blob_connection_string
Marishka17 Mar 13, 2023
a39212e
Merge branch 'develop' into feature/blob_connection_string
nmanovic Mar 15, 2023
62ad57c
Merge branch 'develop' into feature/blob_connection_string
nmanovic Mar 18, 2023
5cac3d4
Update server schema
Marishka17 Mar 19, 2023
e94ecef
Fix schema
Marishka17 Mar 19, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge branch 'develop' of https://github.com/openvinotoolkit/cvat int…
…o feature/blob_connection_string
  • Loading branch information
suzusuzu committed Aug 22, 2022
commit 0647d2217cf12830ec2857cf717de4e170a3a64d
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## \[2.2.0] - Unreleased
### Added
- Added ability to delete frames from a job based on (<https://github.com/openvinotoolkit/cvat/pull/4194>)
- Support of attributes returned by serverless functions based on (<https://github.com/openvinotoolkit/cvat/pull/4506>)
- Project/task backups uploading via chunk uploads
- Fixed UX bug when jobs pagination is reset after changing a job
- Progressbars in CLI for file uploading and downloading
- `utils/cli` changed to `cvat-cli` package
- Support custom file name for backup
- Possibility to display tags on frame
- Support source and target storages (server part)
- Tests for import/export annotation, dataset, backup from/to cloud storage
- Added Python SDK package (`cvat-sdk`)
- Previews for jobs
- Documentation for LDAP authentication (<https://github.com/cvat-ai/cvat/pull/39>)
- OpenCV.js caching and autoload (<https://github.com/cvat-ai/cvat/pull/30>)
- Publishing dev version of CVAT docker images (<https://github.com/cvat-ai/cvat/pull/53>)
- Support of Human Pose Estimation, Facial Landmarks (and similar) use-cases, new shape type: Skeleton (<https://github.com/cvat-ai/cvat/pull/1>)
- Added helm chart support for serverless functions and analytics (<https://github.com/cvat-ai/cvat/pull/110>)
- Add support for Azure Blob Storage connection string authentication(<https://github.com/openvinotoolkit/cvat/pull/4649>)

### Changed
Expand Down
5 changes: 5 additions & 0 deletions cvat/apps/engine/cloud_provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -333,6 +333,11 @@ def supported_actions(self):

class AzureBlobContainer(_CloudStorage):
MAX_CONCURRENCY = 3


class Effect:
pass

def __init__(self, container, account_name, sas_token=None, connection_string=None):
Marishka17 marked this conversation as resolved.
Show resolved Hide resolved
super().__init__()
self._account_name = account_name
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.