Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-12-01Fix wrong link in builds artifacts admin docsAchilleas Pipinellis
[ci skip]
2016-11-29Remove `memberOf` OID in LDAP `user_filter` docs Drew Blessing
While not technically invalid, it is not necessary to have the `memberOf` OID in the `user_filter`. It clutters things up and causes confusion for users so it's better if we remove it from the docs.
2016-11-22Reduce size of images from 25MB to 13MB using pngquantAchilleas Pipinellis
Took it from https://gitlab.com/gitlab-com/www-gitlab-com/merge_requests/3232 [ci skip]
2016-11-22Merge branch 'patch-10' into 'master' Achilleas Pipinellis
add missing sudo skip-auto-migration ## What does this MR do? Fixes minor documentation issue where adding `skip-auto-migration` file does not work because `sudo` is not used. See merge request !7435
2016-11-17Merge branch 'mailroom_idle_timeout' into 'master' Rémy Coutable
Allows configuration of idle_timeout for incoming email. https://gitlab.com/gitlab-org/omnibus-gitlab/merge_requests/1087 See merge request !7423
2016-11-17Remove ToC since it's now supported in the docs portal itselfAchilleas Pipinellis
[ci skip]
2016-11-16Correct the idle_timeout in the docs for installation from source.Marin Jankovski
2016-11-16Remove login as root step from Redis HA docsAchilleas Pipinellis
[ci skip]
2016-11-16Minor edits in Redis HA source installAchilleas Pipinellis
[ci skip]
2016-11-16Remove experimental heading and move note at the topAchilleas Pipinellis
[ci skip]
2016-11-16Merge branch 'doc/sentinel' of gitlab.com:gitlab-org/gitlab-ce into doc/sentinelAchilleas Pipinellis
2016-11-16Improved documentation on HA sentinel part and Redis replication ↵Gabriel Mazetto
troubleshooting.
2016-11-16Updated password examples and improved omnibus troubleshootingGabriel Mazetto
2016-11-16Small fixes on Sentinel documentation for CEGabriel Mazetto
2016-11-16Improved redis sentinel documentation for CEGabriel Mazetto
2016-11-16Add idle_timeout to reply by email doc.Marin Jankovski
2016-11-16Merge examples of Redis master/slave + Sentinels for source docsAchilleas Pipinellis
[ci skip]
2016-11-16Add steps to Redis HA source installationAchilleas Pipinellis
2016-11-16Merge examples of Redis master/slave + SentinelsAchilleas Pipinellis
2016-11-16Rearrange Redis HA source installations sectionsAchilleas Pipinellis
2016-11-16Add clear instructions for the different Redis HA setupsAchilleas Pipinellis
2016-11-16Refactor Redis HA docsAchilleas Pipinellis
[ci skip]
2016-11-16Clarify LDAP troubleshooting ldap_search example [ci skip]Drew Blessing
A customer noted an error/lack of clarity in the LDAP documentation with the `ldap_search` example. Previously, if taken literally, the customer may have expected the `$` variables to be automatically replaced or if they paste the exact `user_filter` contents the parentheses would have been incorrect. Let's just simply the filter and use exactly what's in the configuration.
2016-11-15Swap HA setupsAchilleas Pipinellis
2016-11-12use single quote for consistencyBen Bodenmiller
2016-11-12update redis server detailsBen Bodenmiller
2016-11-12add missing sudo skip-auto-migrationBen Bodenmiller
2016-11-11Refactored Sidekiq Throttler and updated documentationPatricio Cano
2016-11-11Add missing link to GH issueAchilleas Pipinellis
2016-11-10Rearrange sections in Sentinel docsAchilleas Pipinellis
[ci skip]
2016-11-10Added documentation and CHANGELOG item.Patricio Cano
2016-11-10Move some things overAchilleas Pipinellis
2016-11-10Move experimental heading at the bottom under changelogAchilleas Pipinellis
2016-11-10Fix typos of Redis sentinel docsAchilleas Pipinellis
2016-11-10Remade documentation for Redis HA with OmnibusGabriel Mazetto
2016-11-09Merge branch 'ldap_check_bind' into 'master' Sean McGivern
Improve ldap:check errors Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/21621. See merge request !6601
2016-11-09Introduce better credential and error checking to `rake gitlab:ldap:check`Drew Blessing
It was previously possible for invalid credential errors to go unnoticed in this task. Users would believe everything was configured correctly and then sign in would fail with 'invalid credentials'. This adds a specific bind check, plus catches errors connecting to the server. Also, specs :)
2016-11-08Fixed some documentation and moved Source install specific to other file.Gabriel Mazetto
2016-11-08Fixed documentation and added redis/sentinel roles instructionGabriel Mazetto
2016-11-08Few more fixes to Sentinel documentation to address MR feedbackGabriel Mazetto
2016-11-08Reduce the ammount of lines to disable services and update TOCGabriel Mazetto
2016-11-08Improved Redis HA and Sentinel documentation.Gabriel Mazetto
2016-11-08Improved documentation on HA sentinel part and Redis replication ↵Gabriel Mazetto
troubleshooting.
2016-11-08Updated password examples and improved omnibus troubleshootingGabriel Mazetto
2016-11-08Small fixes on Sentinel documentation for CEGabriel Mazetto
2016-11-08Improved redis sentinel documentation for CEGabriel Mazetto
2016-11-04Refine Git garbage collectionJacob Vosmaer
2016-11-04Merge branch '24059-round-robin-repository-storage' into 'master' Douwe Maan
Resolve "Introduce round-robin project creation to spread load over multiple shards" ## What does this MR do? Allow multiple shards to be enabled in the admin settings page, balancing project creation across all enabled shards. ## Are there points in the code the reviewer needs to double check? * `f.select ..., multiple: true` isn't the most beautiful UI in the world, but switching to `collection_check_boxes` (or a facsimile thereof) isn't trivial * Should `pick_repository_storage` be a method of `ApplicationSetting`, or `Project`? It's going to accrete logic over time so perhaps it should be its own class already? * This is written to avoid the need for a database migration, so it is`serialize :repository_storage` without `, Array`. This is tested, but alternatives include: * Add a database migration * Write a custom Coder that will accept a String or Array in `load` and always `dump an Array. ## Why was this MR needed? ## Screenshots (if relevant) ![Screen_Shot_2016-11-03_at_14.42.41](/uploads/7de15d6c1b3fa60bb7a34d6a7d9f00ce/Screen_Shot_2016-11-03_at_14.42.41.png) ## Does this MR meet the acceptance criteria? - [X] [CHANGELOG](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CHANGELOG.md) entry added - [X] [Documentation created/updated](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/development/doc_styleguide.md) - [x] API support added - Tests - [X] Added for this feature/bug - [ ] All builds are passing - [X] Conform by the [merge request performance guides](http://docs.gitlab.com/ce/development/merge_request_performance_guidelines.html) - [X] Conform by the [style guides](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CONTRIBUTING.md#style-guides) - [X] Branch has no merge conflicts with `master` (if it does - rebase it please) - [X] [Squashed related commits together](https://git-scm.com/book/en/Git-Tools-Rewriting-History#Squashing-Commits) ## What are the relevant issue numbers? Closes #24059 See merge request !7273
2016-11-04Document multiple repository storage pathsNick Thomas
2016-11-04Show log corresponding to env in admin/logsLukas Erlacher
No matter which environment Gitlab was running as, the admin/logs view always showed production.log. This commit selects the logfile based on Rails.env. - Rename ProductionLogger to EnvironmentLogger - Make EnvironmentLogger logfile depend on env - Update spinach test for log tabs