Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Run clippy in nix, leveraging nix caching ability | Quentin Dufour | 2022-07-26 | 1 | -7/+7 |
| | |||||
* | Fail if compiled binary is dynamic | Quentin Dufour | 2022-07-26 | 1 | -45/+59 |
| | |||||
* | Add a K2V client library and CLI (#303) | trinity-1686a | 2022-05-18 | 1 | -0/+2 |
| | | | | | | | | | lib.rs could use getting split in modules, but I'm not sure how exactly Co-authored-by: trinity-1686a <trinity@deuxfleurs.fr> Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/garage/pulls/303 Co-authored-by: trinity-1686a <trinity.pointard@gmail.com> Co-committed-by: trinity-1686a <trinity.pointard@gmail.com> | ||||
* | Remove strum crate dependency; add protobuf nix dependency | Alex Auvolat | 2022-03-14 | 1 | -0/+1 |
| | |||||
* | add support for kubernetes service discovery | Max Audron | 2022-03-12 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | | | | | | This commit adds support to discover garage instances running in kubernetes. Once enabled by setting `kubernetes_namespace` and `kubernetes_service_name` garage will create a Custom Resources `garagenodes.deuxfleurs.fr` with nodes public key as the resource name. and IP and Port information as spec in the namespace configured by `kubernetes_namespace`. For discovering nodes the resources are filtered with the optionally set `kubernetes_service_name` which sets a label `garage.deuxfleurs.fr/service` on the resources. This allows to separate multiple garage deployments in a single namespace. the `kubernetes_skip_crd` variable allows to disable the creation of the CRD by garage itself. The user must deploy this manually. | ||||
* | Test WinSCPtest/winscp | Quentin Dufour | 2022-03-03 | 1 | -1/+3 |
| | |||||
* | Add integration tests to Drone | Quentin Dufour | 2022-02-10 | 1 | -1/+1 |
| | |||||
* | Upgrade cargo2nix | Quentin Dufour | 2022-02-10 | 1 | -1/+1 |
| | |||||
* | Generate and upload a JSON result | Quentin Dufour | 2022-02-05 | 1 | -3/+9 |
| | |||||
* | Implement ListMultipartUploads (#171) | Quentin | 2022-01-12 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | Implement ListMultipartUploads, also refactor ListObjects and ListObjectsV2. It took me some times as I wanted to propose the following things: - Using an iterator instead of the loop+goto pattern. I find it easier to read and it should enable some optimizations. For example, when consuming keys of a common prefix, we do many [redundant checks](https://git.deuxfleurs.fr/Deuxfleurs/garage/src/branch/main/src/api/s3_list.rs#L125-L156) while the only thing to do is to [check if the following key is still part of the common prefix](https://git.deuxfleurs.fr/Deuxfleurs/garage/src/branch/feature/s3-multipart-compat/src/api/s3_list.rs#L476). - Try to name things (see ExtractionResult and RangeBegin enums) and to separate concerns (see ListQuery and Accumulator) - An IO closure to make unit tests possibles. - Unit tests, to track regressions and document how to interact with the code - Integration tests with `s3api`. In the future, I would like to move them in Rust with the aws rust SDK. Merging of the logic of ListMultipartUploads and ListObjects was not a goal but a consequence of the previous modifications. Some points that we might want to discuss: - ListObjectsV1, when using pagination and delimiters, has a weird behavior (it lists multiple times the same prefix) with `aws s3api` due to the fact that it can not use our optimization to skip the whole prefix. It is independant from my refactor and can be tested with the commented `s3api` tests in `test-smoke.sh`. It probably has the same weird behavior on the official AWS S3 implementation. - Considering ListMultipartUploads, I had to "abuse" upload id marker to support prefix skipping. I send an `upload-id-marker` with the hardcoded value `include` to emulate your "including" token. - Some ways to test ListMultipartUploads with existing software (my tests are limited to s3api for now). Co-authored-by: Quentin Dufour <quentin@deuxfleurs.fr> Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/garage/pulls/171 Co-authored-by: Quentin <quentin@dufour.io> Co-committed-by: Quentin <quentin@dufour.io> | ||||
* | Extract toolchain build from the CIbug/rust-musl | Quentin Dufour | 2021-10-29 | 1 | -2/+22 |
| | |||||
* | Use Rust binaries from Nix instead of rustup | Quentin Dufour | 2021-10-29 | 1 | -5/+9 |
| | |||||
* | Build Garage with Nixfeature/static | Quentin Dufour | 2021-10-19 | 1 | -0/+69 |