- 26 Aug, 2020 8 commits
-
-
Jacob Vosmaer authored
Add additional logging for dynamic img resizing See merge request gitlab-org/gitlab-workhorse!562
-
Aleksei Lipniagov authored
-
Nick Thomas authored
Fix semantical merge conflict (double import) Closes #282 See merge request gitlab-org/gitlab-workhorse!577
-
Jacob Vosmaer authored
Remove ProcessReferences flag See merge request gitlab-org/gitlab-workhorse!543
-
Jacob Vosmaer authored
-
Alessio Caiazza authored
Use testify/require in top level tests See merge request gitlab-org/gitlab-workhorse!570
-
Jacob Vosmaer authored
-
Patrick Bajao authored
RAM usage of parsing LSIF references are now back to normalcy and feature works. This removes the code in workhorse for determining whether parsing references is enabled or not. It'll now always be enabled.
-
- 25 Aug, 2020 7 commits
-
-
Nick Thomas authored
Make more use of testify/require See merge request gitlab-org/gitlab-workhorse!573
-
Jacob Vosmaer authored
-
Nick Thomas authored
Use switch statement instead of long if-else See merge request gitlab-org/gitlab-workhorse!572
-
Alessio Caiazza authored
Stop using require.New and assert.New See merge request gitlab-org/gitlab-workhorse!567
-
Jacob Vosmaer authored
-
Nick Thomas authored
Use more require in internal/{upload,upstream} See merge request gitlab-org/gitlab-workhorse!571
-
Jacob Vosmaer authored
-
- 24 Aug, 2020 2 commits
-
-
Alessio Caiazza authored
Tests: consistent helper function names See merge request gitlab-org/gitlab-workhorse!566
-
Jacob Vosmaer authored
-
- 21 Aug, 2020 2 commits
-
-
Jacob Vosmaer authored
-
Nick Thomas authored
Readme formatting cleanup See merge request gitlab-org/gitlab-workhorse!548
-
- 20 Aug, 2020 10 commits
-
-
Stan Hu authored
Fix nil pointer exception when no object storage config is defined See merge request gitlab-org/gitlab-workhorse!565
-
Stan Hu authored
This is a regression that was caused if the `[object_storage]` config section were omitted.
-
Jacob Vosmaer authored
-
Jacob Vosmaer authored
[ci skip]
-
Jacob Vosmaer authored
-
Jacob Vosmaer authored
Resize images on-demand with `gm convert` See merge request gitlab-org/gitlab-workhorse!546
-
Matthias Käppler authored
via graphicsmagick
-
Nick Thomas authored
-
Nick Thomas authored
[ci skip]
-
Nick Thomas authored
Add Azure Blob Storage support See merge request gitlab-org/gitlab-workhorse!555
-
- 19 Aug, 2020 1 commit
-
-
Stan Hu authored
This merge request introduces a client for Azure Blob Storage in Workhorse. Currently customers wanting to use Azure Blob Storage have to set up a Minio Gateway (https://docs.gitlab.com/charts/advanced/external-object-storage/azure-minio-gateway.html), which isn't ideal because it requires customers to maintain their own proxy server for Azure. We have a number of customers who want native support for Azure Blob Storage. Unlike AWS and Google, Azure needs to use an Azure client inside Workhorse to support direct uploads. Using standard HTTP transfers with pre-signed URLs with the Azure Put Blob API (https://docs.microsoft.com/en-us/rest/api/storageservices/put-blob) doesn't work because Azure doesn't support chunked transfer encoding. However, Azure does support uploading files in segments via the Put Block and Put Block List API (https://docs.microsoft.com/en-us/rest/api/storageservices/put-block), but this requires an Azure client that can speak this API. Instead of embedding the Microsoft Azure client directly, we use the Go Cloud Development Kit (https://godoc.org/gocloud.dev/blob) to make it easier to add other object storage providers later. For example, GitLab Rails might return this JSON payload in the `/internal/uploads/authorize` call: ```json { "UseWorkhorseClient":true, "ObjectStorage":{ "Provider":"AzureRM", "GoCloudConfig":{ "URL":"azblob://test-bucket" } } } ``` The `azblob` scheme is managed by the Go Cloud `URLMux` (https://godoc.org/gocloud.dev/blob#URLMux). Converting our existing S3 client with Go Cloud should be done later (https://gitlab.com/gitlab-org/gitlab-workhorse/-/issues/275). This changes requires https://gitlab.com/gitlab-org/gitlab/-/merge_requests/38882 to work. Omnibus configuration changes are in https://gitlab.com/gitlab-org/omnibus-gitlab/-/merge_requests/4505. Part of https://gitlab.com/gitlab-org/gitlab/-/issues/25877
-
- 18 Aug, 2020 7 commits
-
-
Nick Thomas authored
-
Nick Thomas authored
[ci skip]
-
Nick Thomas authored
Add project level route for conan package uploads See merge request gitlab-org/gitlab-workhorse!558
-
Jacob Vosmaer authored
Security release process See merge request gitlab-org/gitlab-workhorse!507
-
Steve Abrams authored
-
Nick Thomas authored
Reduce code duplication in LFS upload preparer See merge request gitlab-org/gitlab-workhorse!560
-
Stan Hu authored
We reuse the standard object storage upload preparer to avoid duplication of code and add a test. This is done in prepration for adding new fields to the filestore options.
-
- 17 Aug, 2020 1 commit
-
-
Nick Thomas authored
Update staticcheck and ignore Protobuf v1 deprecation warnings See merge request gitlab-org/gitlab-workhorse!559
-
- 15 Aug, 2020 1 commit
-
-
Stan Hu authored
This update is done in preparation for importing the Go Cloud SDK. To fix this properly, we will have to update Gitaly to use Protobuf v2: https://blog.golang.org/protobuf-apiv2 See https://gitlab.com/gitlab-org/gitlab-workhorse/-/issues/274.
-
- 13 Aug, 2020 1 commit
-
-
Nick Thomas authored
Refactor uploaders to use different upload strategies See merge request gitlab-org/gitlab-workhorse!553
-