This project is mirrored from https://:*****@gitlab.com/gitlab-org/omnibus-gitlab.git.
Pull mirroring failed .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer or owner.
Last successful update .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer or owner.
Last successful update .
- Sep 21, 2020
-
-
Imre (Admin) authored
-
- Aug 13, 2020
-
-
Douglas Barbosa Alexandre authored
-
- Aug 11, 2020
-
-
Stan Hu authored
This commit adds settings for the `storage_options` setting used to configure AWS server side encryption. Note that only SSE-KMS (https://docs.aws.amazon.com/kms/latest/developerguide/services-s3.html#sse) is supported; SSE-C is not. Related merge requests: 1. https://gitlab.com/gitlab-org/gitlab/-/merge_requests/38240 2. https://gitlab.com/gitlab-org/gitlab-workhorse/-/merge_requests/537
-
- Aug 06, 2020
-
-
- Jul 31, 2020
-
-
Aishwarya authored
Cron job introduced in https://gitlab.com/gitlab-org/gitlab/-/merge_requests/38086
-
- Jul 24, 2020
-
-
Tiger Watson authored
-
- Jul 22, 2020
-
-
Jaime Martinez authored
-
- Jul 14, 2020
-
-
Heinrich Lee Yu authored
This also moves the worker pool size setting to an ENV variable since that was changed in gitlab-rails
-
- Jul 13, 2020
-
-
Douglas Barbosa Alexandre authored
-
-
- Jul 03, 2020
-
-
Stan Hu authored
This adds support for the gitlab.yml changes in https://gitlab.com/gitlab-org/gitlab/-/merge_requests/34460. This allows GitLab to use the Workhorse S3 client with a single credential, enabling proper MD5 checksums and multipart uploads, and paves the way for user-specified keys for encrypted buckets. These changes require https://gitlab.com/gitlab-org/gitlab/-/merge_requests/35480 to work.
-
- Jun 26, 2020
-
-
runit_service[sidekiq] It looks like LWRP resources aren't added to the list at compile time, so there isn't any runit_service[sidekiq] when notifications are being setup
-
- Jun 24, 2020
-
-
* Curently on 14, which was set to end of life at on April 30, 2020. * Adds chef-bin gem * Automatically accept the chef license EULA * Update chef libraries in Gemfile to newer versions * Update trigger jobs to use ruby 2.6 image
-
- Jun 23, 2020
-
-
DJ Mountney authored
-
- Jun 16, 2020
-
-
Stan Hu authored
As discussed in https://gitlab.com/gitlab-org/omnibus-gitlab/-/merge_requests/4324, we can set the default attribute for `gitlab_workhorse['auth_socket']` to `nil` as the empty string value so we can use `node['gitlab']['gitlab-workhorse']['auth_socket']` in the template instead of `Gitlab['gitlab_workhorse']['auth_socket']`.
-
- Jun 03, 2020
-
-
Craig Miskell authored
To support continuous profiling in gitlab-pages (https://gitlab.com/gitlab-com/gl-infra/scalability/-/issues/334) we need to supply an environment variable (GITLAB_CONTINUOUS_PROFILING). Before this MR, gitlab-pages had one env var hard-coded into the sv run file. This MR converts to using chpst's -e option as we do for many of our other services, and permits the configuring of additional env vars from gitlab.rb (as we do for e.g. gitaly and praefect).
-
- May 21, 2020
-
-
- May 14, 2020
-
-
Ben Kochie authored
* Include `text/html` missing from gzip_types. * Use the same nginx settings for nginx.conf and gitlab-http.conf. * Include gzip_ratio in the nginx log format. https://gitlab.com/gitlab-org/gitlab-foss/-/issues/33719 Signed-off-by:
Ben Kochie <bjk@gitlab.com>
-
Heinrich Lee Yu authored
-
Heinrich Lee Yu authored
-
Heinrich Lee Yu authored
-
Heinrich Lee Yu authored
-
- May 13, 2020
-
-
Signed-off-by:
Balasankar "Balu" C <balasankarc@autistici.org>
-
- May 09, 2020
-
-
Diego Louzán authored
-
- May 08, 2020
-
-
Bob Van Landuyt authored
This is the next step in having a single way of running Sidekiq: the sidekiq config now delegates to sidekiq-cluster by default. It also updates the shutdown timeout and the max threads to the defaults for sidekiq-cluster and sidekiq This also adds support for configuring `sidekiq['shutdown_timeout']`.
-
-
- May 07, 2020
-
-
Signed-off-by:
Balasankar "Balu" C <balasankarc@autistici.org>
-
gitlab-monitor The switch the monitoring components syntax The auth-server config item for gitlab-pages
-
- Apr 27, 2020
-
-
Balasankar "Balu" C authored
Signed-off-by:
Balasankar "Balu" C <balasankarc@autistici.org>
-
- Apr 24, 2020
-
-
When enabled it allows to fetch incoming service desk emails from a dedicated email address.
-
- Apr 21, 2020
- Apr 09, 2020
-
-
Heinrich Lee Yu authored
Defaults to the same default Redis instance but also allows specifying a separate Redis instance
-
- Apr 02, 2020
-
-
Son Luong Ngoc authored
Enable git to write a commit graph on git fetch. This should helps the server to write a CommitGraph during mirror clone/fetch activities, consistent with current `core` and `gc` commit-graph configs set within Gitaly. Git-commit-graph enable faster connectivity check which makes faster git merge-base, git push -f, and git log --graph. Reference: https://git-scm.com/docs/git-config#Documentation/git-config.txt-corecommitGraph
-
- Mar 31, 2020
-
-
Son Luong Ngoc authored
Added pack.useSparse as default config in order to help performance of git-pack-objects References: see https://git-scm.com/docs/git-pack-objects#Documentation/git-pack-objects.txt---sparse
-
-
- Mar 25, 2020
-
-
Bob Van Landuyt authored
We're moving to running Sidekiq cluster as a default in the future. This allows administrators to opt-in to the sidekiq cluster behaviour already. This behaviour will copy the configuration of sidekiq to sidekiq-cluster. So it will respect concurrency and logging settings. When enabling `cluster` for Sidekiq, this will spin up a single Sidekiq-cluster and Sidekiq process. Sidekiq-cluster will be configured with the queue groups set to [`*`]. Which will spin up a single Sidekiq process picking up all queues.
-
- Mar 20, 2020
-
-
John Jarvis authored
-
- Mar 19, 2020
-
-
Alishan Ladhani authored
-
- Mar 18, 2020
-
-
If gitlab_rails['db_statement_timeout'] is set by the user, then it will pick up its value from postgresql['statement_timeout'].
-
- Mar 17, 2020
-
-
Ben Kochie authored
* Use 4 threads per production recommended value. * Use 1 worker per CPU per production recommended value. Fixes: https://gitlab.com/gitlab-org/omnibus-gitlab/-/issues/3896 Signed-off-by:
Ben Kochie <bjk@gitlab.com>
-