Skip to content
Snippets Groups Projects
  1. Nov 08, 2024
  2. Nov 05, 2024
    • Stan Hu's avatar
      Make ActionCable Redis settings use default Redis Sentinel password · 6c142799
      Stan Hu authored
      Suppose you have this config:
      
      ```
      gitlab_rails['redis_sentinels'] = [
        {"host"=>"gitlabtest-cluster-redis-01", "port"=>26379},
        {"host"=>"gitlabtest-cluster-redis-02", "port"=>26379},
        {"host"=>"gitlabtest-cluster-redis-03", "port"=>26379}
      ]
      gitlab_rails['redis_sentinels_password'] = "some password"
      redis['enable'] = false
      redis['master_name'] = "gitlab-redis"
      redis['master_password'] = "some password"
      ```
      
      Previously ActionCable Redis settings would only look for
      `gitlab_rails['redis_actioncable_sentinels_password']` and did
      not fall back to `gitlab_rails['redis_sentinels_password']`.
      
      Relates to https://gitlab.com/gitlab-org/omnibus-gitlab/-/issues/8728
      
      Changelog: fixed
      6c142799
  3. Oct 29, 2024
  4. Oct 22, 2024
  5. Sep 24, 2024
    • James Liu's avatar
      gitaly: Add max_cgroups_per_repo configuration · 14b09986
      James Liu authored
      A new cgroups configuration parameter called `max_cgroups_per_repo` was
      introduced with https://gitlab.com/gitlab-org/gitaly/-/issues/5689. This
      parameter allows independent Git processes targeting a single repository
      to be distributed across multiple repository cgroups. This enables
      stricter limits to be defined for repository cgroups while still
      allowing for bursty workloads comprising of independent Git operations
      against a single repo.
      
      Document this parameter in the Omnibus configuration.
      
      Changelog: added
      14b09986
  6. Sep 20, 2024
  7. Sep 11, 2024
  8. Sep 18, 2024
  9. Sep 17, 2024
  10. Sep 04, 2024
  11. Aug 21, 2024
  12. Aug 14, 2024
  13. Aug 06, 2024
  14. Jul 11, 2024
  15. Jul 15, 2024
  16. Jul 12, 2024
  17. Jun 30, 2024
  18. Apr 15, 2024
  19. Jul 12, 2024
  20. Jul 10, 2024
  21. Apr 08, 2024
  22. Jun 27, 2024
    • Stan Hu's avatar
      Fix Redis password handling with reserved characters · ba009e3b
      Stan Hu authored
      Previously including reserved characters such as `@` in the Redis
      password would fail because `URI::Generic::DEFAULT_PARSER.escape` did
      not consider `@` unsafe, which it generally isn't per RFC 2396 and
      3986. However, the `@` is not allowed in the userinfo field, and the
      URI builder for Ruby fails if using a reserved character were
      included.
      
      To fix this, use `ERB.url_encode`, which always escapes any
      non-alphanumeric string.
      
      Relates to https://gitlab.com/gitlab-org/omnibus-gitlab/-/issues/8602
      
      Changelog: fixed
      ba009e3b
  23. Jun 04, 2024
  24. Jun 24, 2024
  25. Jun 12, 2024
    • Vasilii Iakliushin's avatar
      Disable request buffering for new SSH endpoints · ed3f9dbb
      Vasilii Iakliushin authored
      Contributes to https://gitlab.com/gitlab-org/gitlab/-/issues/466160
      
      **Problem**
      
      While testing the new implementation of SSH endpoints for git related
      actions. I noticed a problem reproducible in my
      local environment.
      
      The request from GitLab-Shell to Workhorse was hanging. After in
      investigation I discovered the root cause of this problem.
      
      In our NGINX configuration we use request buffering. After adding the
      new endpoint to the list of exceptions, then problem was resolved.
      
      **Solution**
      
      Add new endpoints to the list of exceptions for nginx configuration.
      
      Changelog: changed
      ed3f9dbb
  26. Jun 24, 2024
    • Ian Baum's avatar
      Add gitlab-backup user · ab269a79
      Ian Baum authored
      * Creates the gitlab-backup user and groups if they dont' exist
      * Adds the user to other groups
      * For use by gitlab-backup-cli for read/write permission to data for
        backups and restores
      
      Changelog: added
      ab269a79
  27. Jun 19, 2024
  28. Jun 13, 2024
  29. Jun 11, 2024
  30. Jun 10, 2024
  31. Jun 07, 2024
  32. Jun 04, 2024
  33. May 22, 2024
  34. Apr 17, 2024
Loading