| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| |
| |
| |
| |
| | |
Redirect Kubernetes installation to the charts docs
Closes #58870
See merge request gitlab-org/gitlab-ce!26159
|
| |
| |
| |
| |
| | |
With the advent of the new chart docs, we should deprecate the old ones
and redirect them to the new ones.
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| | |
As of 11.9 GitLab supports Google Secure LDAP for authentication
and group sync. This documentation outlines how to configure
the service.
Rename file
|
| | |
|
|\ \
| | |
| | |
| | | |
jarv/dev-to-gitlab-2019-04-02
|
| | |
| | |
| | |
| | |
| | | |
Adds a rake task which can be used for removing EXIF
data from existing uploads.
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
Add troubleshooting info for Docker and GitLab Pages
See merge request gitlab-org/gitlab-ce!26662
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Allow external diffs to be used conditionally
Closes #54670
See merge request gitlab-org/gitlab-ce!25432
|
| |/ / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Since external diffs are likely to be a bit slower than in-database
ones, add a mode that makes diffs external after they've been obsoleted
by events. This should strike a balance between performance and disk
space.
A background cron drives the majority of migrations, since diffs become
outdated through user actions.
|
|\ \ \ \
| | | | |
| | | | |
| | | | |
| | | | | |
Log Gitaly RPC duration to api_json.log and production_json.log
See merge request gitlab-org/gitlab-ce!26652
|
| |/ / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
This makes it easier to debug Gitaly performance issues in the field.
This commit also makes the tracking of query time thread-safe via
RequestStore.
|
|/ / / |
|
| | | |
|
|\ \ \
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Allow custom hooks errors to appear in GitLab UI
Closes #48132
See merge request gitlab-org/gitlab-ce!25625
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Error messages from custom pre-receive hooks now appear in the GitLab
UI.
This is re-enabling a feature that had been disabled in merge request
https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/18646
The feature had been disabled due to security concerns that information
which was not intended to be public (like stack traces) would leak into
public view.
PreReceiveErrors (from pre-receive, post-receive and update custom
hooks) are now filtered for messages that have been prefixed in a
particular way.
Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/48132
|
| | | | |
|
| | | | |
|
| |/ /
|/| | |
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
doc/uploads: fix another path to omnibus uploads
See merge request gitlab-org/gitlab-ce!22330
|
| | | |
| | | |
| | | |
| | | |
| | | | |
small explanation here (by @balasankarc):
https://gitlab.com/gitlab-org/omnibus-gitlab/merge_requests/2777#note_131420508
|
| | | | |
|
| |/ /
|/| | |
|
| | | |
|
|\ \ \
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Hashed Storage: Document Rollback mechanism
Closes #58738
See merge request gitlab-org/gitlab-ce!25960
|
| | |/
| |/|
| | |
| | |
| | | |
Updated Rake-specific documentation to include storage rollback,
and improved migration and rollback instructions.
|
|/ / |
|
| | |
|
| | |
|
| |
| |
| |
| |
| | |
Until we solve https://gitlab.com/gitlab-com/gitlab-docs/issues/347,
let's just be explicit to avoid confusion.
|
|\ \
| | |
| | |
| | |
| | | |
Fix missing quote in Wildcard domains section
See merge request gitlab-org/gitlab-ce!25773
|
| | | |
|
|/ /
| |
| |
| | |
Signed-off-by: Takuya Noguchi <takninnovationresearch@gmail.com>
|
|\ \
| |/
|/|
| |
| |
| |
| | |
Allow raw `tls_options` to be passed in LDAP configuration
Closes #46391
See merge request gitlab-org/gitlab-ce!20678
|
| |
| |
| |
| |
| |
| |
| | |
We've previously exposed ca_file and ssl_version but there are many
possible options that can be used inside tls_options. Instead of
exposing individual ones, simply expose the entire hash so it can
be passed in and we won't have to add things in the future.
|
| | |
|
|\ \
| | |
| | |
| | |
| | | |
sidekiq: terminate child processes at shutdown
See merge request gitlab-org/gitlab-ce!25669
|
| |/
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Sidekiq jobs frequently spawn long-lived child processes to do work.
In some circumstances, these can be reparented to init when sidekiq is
terminated, leading to duplication of work and strange concurrency
problems.
This commit changes sidekiq so that, if run as a process group leader,
it will forward `INT` and `TERM` signals to the whole process group. If
the memory killer is active, it will also use the process group when
resorting to `kill -9` to shut down.
These changes mean that a naive `kill <pid-of-sidekiq>` will now do the
right thing, killing any child processes spawned by sidekiq, as long as
the process supervisor placed it in its own process group.
If sidekiq isn't a process group leader, this new code is skipped.
|
| | |
|
|\ \
| | |
| | |
| | |
| | | |
Bring back Rugged implementation of find_commit
See merge request gitlab-org/gitlab-ce!25477
|
| |/
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
This brings back some of the changes in
https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/20339.
For users using Gitaly on top of NFS, accessing the Git data directly
via Rugged is more performant than Gitaly. This merge request introduces
the feature flag `rugged_find_commit` to activate Rugged paths.
There are also Rake tasks `gitlab:features:enable_rugged` and
`gitlab:features:disable_rugged` to enable/disable these feature
flags altogether.
Part of four Rugged changes identified in
https://gitlab.com/gitlab-org/gitlab-ce/issues/57317.
|
|/ |
|
|
|
|
|
|
|
|
|
| |
As mentioned in
https://gitlab.com/gitlab-org/gitlab-ce/issues/58121#note_145299901, it
wasn't obvious that upgrading an GitLab HA cluster required special
care. Link to the Omnibus documentation for upgrade instructions.
Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/58121
|
|\
| |
| |
| |
| | |
Docs: Fix anchors in HA docs
See merge request gitlab-org/gitlab-ce!25415
|
| | |
|
| | |
|
| |
| |
| |
| | |
Signed-off-by: Takuya Noguchi <takninnovationresearch@gmail.com>
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Markdown renderers find it easier to determine
where lists start and end when lists are surrounded
by new lines.
For consistency, also ensure entries in the list
are aligned when they span multipls lines.
|