As we reevaluate how to best support and maintain Staging Ref in the future, we encourage development teams using this environment to highlight their use cases in the following issue: https://gitlab.com/gitlab-com/gl-infra/software-delivery/framework/software-delivery-framework-issue-tracker/-/issues/36.

Skip to content
Snippets Groups Projects
  1. May 05, 2023
  2. May 04, 2023
  3. May 03, 2023
  4. May 01, 2023
  5. Apr 26, 2023
  6. Apr 13, 2023
  7. Apr 11, 2023
  8. Apr 07, 2023
  9. Mar 22, 2023
  10. Mar 17, 2023
  11. Mar 15, 2023
  12. Mar 07, 2023
  13. Mar 06, 2023
  14. Mar 03, 2023
    • Igor Drozdov's avatar
      Perform HTTP request to primary on Geo push · 83a4e8e5
      Igor Drozdov authored
      Currently, we perform a request to Gitlab Rails that proxies
      the request to primary
      
      However, it causes timeouts on big pushes and consumes large
      amount of memory. We can perform an HTTP request directly
      from Gitlab Shell instead and stream the response to the user
      Unverified
      83a4e8e5
  15. Feb 28, 2023
  16. Feb 23, 2023
    • Lorenz Brun's avatar
      sshd: exclude gssapi when building without cgo · c413f99c
      Lorenz Brun authored
      MR #682 broke building without cgo enabled as it introduced a dependency
      on a Kerberos library. This can only be disabled at runtime and thus
      static builds of gitlab-sshd are no longer possible.
      
      This change introduces an alternative implementation of the GSSAPI
      structure which just rejects attempts to use it.
      That alternative implementation gets automatically activated in case the
      user is building without cgo.
      c413f99c
  17. Feb 15, 2023
  18. Feb 14, 2023
  19. Feb 08, 2023
  20. Feb 07, 2023
    • Igor Drozdov's avatar
      Define Do function for Gitlab net client · 3a733910
      Igor Drozdov authored
      In future, we'll need to perform http requests for Geo related
      code area.
      
      We cannot use retryable requests because:
      
      - It's not necessary for the to be retryable
      - In order to retry, the whole request body is stored in RAM,
      while we need to stream large blobs of data
      
      This commit:
      
      - Extracts logging into a separate round tripper in order to
      reuse it for other http requests by default
      - Defines Do function that accepts raw request as an argument
      Unverified
      3a733910
  21. Feb 03, 2023
  22. Feb 01, 2023
Loading