aboutsummaryrefslogtreecommitdiff
path: root/src/api/admin/router.rs
Commit message (Collapse)AuthorAgeFilesLines
* admin api: increased compatibility for v0/ endpointsv0.9.0-rc2Alex Auvolat2023-10-051-160/+0
|
* admin api: remove broken GET /v0/key router ruleAlex Auvolat2023-10-051-1/+1
|
* Merge branch 'main' into nextv0.9.0-beta1Alex Auvolat2023-08-291-3/+3
|\
| * support {s3,web}.root_domains in /check endpointbug/support-root-domains-on-demand-tlsQuentin Dufour2023-08-081-3/+3
| |
* | admin: uniformize layout api and improve codeAlex Auvolat2023-06-141-1/+1
| |
* | admin and cli: hide secret keys unless askedAlex Auvolat2023-06-141-6/+8
| |
* | admin api: move all endpoints to v1/ by default (v0/ still supported)Alex Auvolat2023-06-141-22/+22
| |
* | admin api: switch GetClusterHealth to camelcase (fix #381 again)Alex Auvolat2023-06-141-1/+1
| |
* | admin api: change cluster status/layout to use lists and not maps (fix #377)Alex Auvolat2023-06-141-3/+3
|/
* Implemented website hosting authorization endpoint.Jonathan Davies2023-01-131-0/+3
| | | | Fixes: #468
* Fix router keyword handling (fix #442)router-keywords-fixAlex Auvolat2022-12-121-6/+9
|
* Separate /health (simple text answer) and /v0/health (full json answer, ↵Alex Auvolat2022-12-051-5/+5
| | | | authenticated)
* Refactor health check and add ability to return it in jsonAlex Auvolat2022-12-051-3/+6
|
* Implement /health admin API endpoint to check node healthAlex Auvolat2022-12-051-0/+4
|
* improve internal item counter mechanisms and implement bucket quotas (#326)Alex2022-06-151-6/+2
| | | | | | | | | | | | | | | | - [x] Refactoring of internal counting API - [x] Repair procedure for counters (it's an offline procedure!!!) - [x] New counter for objects in buckets - [x] Add quotas to buckets struct - [x] Add CLI to manage bucket quotas - [x] Add admin API to manage bucket quotas - [x] Apply quotas by adding checks on put operations - [x] Proof-read Co-authored-by: Alex Auvolat <alex@adnab.me> Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/garage/pulls/326 Co-authored-by: Alex <alex@adnab.me> Co-committed-by: Alex <alex@adnab.me>
* First version of admin API (#298)Alex2022-05-241-0/+149
**Spec:** - [x] Start writing - [x] Specify all layout endpoints - [x] Specify all endpoints for operations on keys - [x] Specify all endpoints for operations on key/bucket permissions - [x] Specify all endpoints for operations on buckets - [x] Specify all endpoints for operations on bucket aliases View rendered spec at <https://git.deuxfleurs.fr/Deuxfleurs/garage/src/branch/admin-api/doc/drafts/admin-api.md> **Code:** - [x] Refactor code for admin api to use common api code that was created for K2V **General endpoints:** - [x] Metrics - [x] GetClusterStatus - [x] ConnectClusterNodes - [x] GetClusterLayout - [x] UpdateClusterLayout - [x] ApplyClusterLayout - [x] RevertClusterLayout **Key-related endpoints:** - [x] ListKeys - [x] CreateKey - [x] ImportKey - [x] GetKeyInfo - [x] UpdateKey - [x] DeleteKey **Bucket-related endpoints:** - [x] ListBuckets - [x] CreateBucket - [x] GetBucketInfo - [x] DeleteBucket - [x] PutBucketWebsite - [x] DeleteBucketWebsite **Operations on key/bucket permissions:** - [x] BucketAllowKey - [x] BucketDenyKey **Operations on bucket aliases:** - [x] GlobalAliasBucket - [x] GlobalUnaliasBucket - [x] LocalAliasBucket - [x] LocalUnaliasBucket **And also:** - [x] Separate error type for the admin API (this PR includes a quite big refactoring of error handling) - [x] Add management of website access - [ ] Check that nothing is missing wrt what can be done using the CLI - [ ] Improve formatting of the spec - [x] Make sure everyone is cool with the API design Fix #231 Fix #295 Co-authored-by: Alex Auvolat <alex@adnab.me> Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/garage/pulls/298 Co-authored-by: Alex <alex@adnab.me> Co-committed-by: Alex <alex@adnab.me>