Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | wip: split garage_api into garage_api_{common,s3,k2v,admin} | Alex Auvolat | 8 days | 1 | -9/+9 |
| | |||||
* | Merge branch 'main' into next-0.10 | Alex Auvolat | 2024-03-04 | 1 | -17/+41 |
|\ | |||||
| * | [fix-auth-ct-eq] use argon2 hashing and verification for admin/metrics token ↵ | Alex Auvolat | 2024-02-29 | 1 | -17/+41 |
| | | | | | | | | checking | ||||
* | | Merge branch 'main' into next-0.10 | Alex Auvolat | 2024-02-13 | 1 | -16/+21 |
|\| | |||||
| * | [dep-upgrade-202402] fix shutdown issue introduced when upgrading hyperdep-upgrade-202402 | Alex Auvolat | 2024-02-08 | 1 | -3/+3 |
| | | |||||
| * | [dep-upgrade-202402] wip: port to http/hyper crates v1 | Alex Auvolat | 2024-02-05 | 1 | -13/+18 |
| | | |||||
* | | Merge pull request 'NLnet task 3' (#667) from nlnet-task3 into next-0.10 | Alex | 2024-01-11 | 1 | -1/+1 |
|\ \ | |/ |/| | | | Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/garage/pulls/667 | ||||
| * | layout: use separate CRDT for staged layout changes | Alex Auvolat | 2023-11-09 | 1 | -1/+1 |
| | | |||||
* | | Health info message now advertises API v1 | Quentin Dufour | 2023-11-22 | 1 | -1/+1 |
|/ | |||||
* | admin api: increased compatibility for v0/ endpointsv0.9.0-rc2 | Alex Auvolat | 2023-10-05 | 1 | -2/+8 |
| | |||||
* | Merge branch 'main' into nextv0.9.0-rc1 | Alex Auvolat | 2023-10-03 | 1 | -3/+3 |
|\ | |||||
| * | api: allow custom unix bind mode and use 0o220 for admin server | networkException | 2023-10-03 | 1 | -1/+1 |
| | | |||||
| * | everywhere: support unix sockets when binding in various places | networkException | 2023-09-29 | 1 | -2/+2 |
| | | | | | | | | | | this patch implements binding to paths as a unix socket for generic server and web server. | ||||
* | | Merge branch 'main' into nextv0.9.0-beta1 | Alex Auvolat | 2023-08-29 | 1 | -18/+52 |
|\| | |||||
| * | admin api: refactor caddy check api code | Alex Auvolat | 2023-08-28 | 1 | -17/+22 |
| | | |||||
| * | support {s3,web}.root_domains in /check endpointbug/support-root-domains-on-demand-tls | Quentin Dufour | 2023-08-08 | 1 | -9/+38 |
| | | |||||
* | | admin and cli: hide secret keys unless asked | Alex Auvolat | 2023-06-14 | 1 | -2/+7 |
|/ | |||||
* | *: apply clippy recommendations. | Jonathan Davies | 2023-05-09 | 1 | -1/+1 |
| | |||||
* | Improved bucket authorization response strings. | Jonathan Davies | 2023-01-29 | 1 | -6/+10 |
| | |||||
* | api_server.rs: Adapted to use query string per Caddy upstream change. | Jonathan Davies | 2023-01-29 | 1 | -15/+19 |
| | |||||
* | More clippy fixes | Alex Auvolat | 2023-01-26 | 1 | -1/+1 |
| | |||||
* | Implemented website hosting authorization endpoint. | Jonathan Davies | 2023-01-13 | 1 | -0/+48 |
| | | | | Fixes: #468 | ||||
* | Separate /health (simple text answer) and /v0/health (full json answer, ↵ | Alex Auvolat | 2022-12-05 | 1 | -43/+11 |
| | | | | authenticated) | ||||
* | Refactor health check and add ability to return it in json | Alex Auvolat | 2022-12-05 | 1 | -82/+49 |
| | |||||
* | Implement /health admin API endpoint to check node health | Alex Auvolat | 2022-12-05 | 1 | -0/+94 |
| | |||||
* | Use status code 204 No Content for empty responses | Tobias Krischer | 2022-10-17 | 1 | -3/+3 |
| | |||||
* | Initialize metrics exporter earlier (fix #389)fix-metrics | Alex Auvolat | 2022-09-20 | 1 | -2/+5 |
| | |||||
* | Make all HTTP services optionnal | Alex Auvolat | 2022-09-07 | 1 | -9/+10 |
| | |||||
* | Allow building without Prometheus exporter (/metrics endpoint) | Jakub Jirutka | 2022-09-06 | 1 | -22/+33 |
| | | | | | | prometheus and opentelemetry-prometheus add 7 extra dependencies in total and increases the size of the garage binary by ~7 % (with fat LTO). | ||||
* | improve internal item counter mechanisms and implement bucket quotas (#326) | Alex | 2022-06-15 | 1 | -6/+1 |
| | | | | | | | | | | | | | | | | - [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) | Alex | 2022-05-24 | 1 | -0/+199 |
**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> |