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
2017-05-24rake task to reset all rss tokensAlexis Reigel
2017-05-18Enable the RSpec/ExpectOutput copRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-05-15Don't reuse gRPC channelsJacob Vosmaer
It seems that bad things happen when two gRPC stubs share one gRPC channel so let's stop doing that. The downside of this is that we create more gRPC connections; one per stub.
2017-05-12Relax rake backup regex to handle CE and EE RCsStan Hu
See http://rubular.com/r/uTDlT85zW1
2017-05-12Fix failing backup filename spec for RCsStan Hu
See http://rubular.com/r/9oI7K8b773 for more details.
2017-05-10Enable the Style/TrailingCommaInLiteral copRémy Coutable
Use the EnforcedStyleForMultiline: no_comma option. Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-05-04Compile gitlab-shell go executablesJacob Vosmaer
2017-05-03Merge branch 'rs-described_class-cop-2' into 'master' Douwe Maan
Enable `RSpec/DescribedClass` cop and correct violations See merge request !10930
2017-05-01Auto-correct `RSpec/DescribedClass` violationsRobert Speicher
2017-04-28Use Gitaly for getting Branch/Tag countsKim "BKC" Carlbäcker
- Backup-rake-spec fixed. Storage config broken - Use rugged to compare branch/tag-count in specs - upgrade gitaly
2017-04-26Fix failing specAchilleas Pipinellis
http://rubular.com/r/op7TI9UX6K
2017-04-13Expand components version specification format to allow branchesAlejandro Rodríguez
Currently we specify versions for Gitlab-Shell, Workhorse and Gitaly using version strings, to which we prepend 'v' and assume are tags. These changes allow branches or tags with other name formats to be specified by prepending '=' to the version string (á la govendor). We also simplify the process to reset to the given version (now a branch or tag): Right now there's a check to supposedly try to avoid fetching from the remote the version if it already exist locally. But the previous logic already clones if the directory doesn't exist or fetches if it does, so this check is pointless. We can safely assume the version exists once we get to the reset stage.
2017-04-04Add rake task that prints TOML storage configurationAhmad Sherif
Closes gitaly#173
2017-03-30Merge branch 'rs-empty-project-misc' into 'master' Rémy Coutable
Use `:empty_project` in worker, view, task, serializer, policy, migration, and mailer specs See merge request !10272
2017-03-29Allow backup tests to run locallyauthor Jacob Vosmaer jacob@gitlab.com 1490710538 +0200
2017-03-29Expand relative paths in storagesJacob Vosmaer
2017-03-28Use Project `:repository` trait where necessary in task specsRobert Speicher
2017-03-21Remove unnecessary before blockJacob Vosmaer
2017-03-21Rake task that can install gitaly at a tag versionJacob Vosmaer
2017-03-21Add a rake task to reset all email and private tokensJames Lopez
2017-03-07Merge branch '28447-hybrid-repository-storages' into 'master' Sean McGivern
Update storage settings to allow extra values per shard See merge request !9597
2017-03-07Merge branch 'add-git-version-to-system-info' into 'master' Rémy Coutable
Add git version to gitlab:env:info Closes #25376 See merge request !9128
2017-03-03Remove remnants of git annexPawel Chojnacki
2017-03-03Update storage settings to allow extra values per shardAlejandro Rodríguez
This will be necessary when adding gitaly settings. This version doesn't make any functional changes, but allows us to include this breaking change in 9.0 and add the needed extra settings in the future with backwards compatibility
2017-02-28Add git version to gitlab:env:infoSemyon Pupkov
https://gitlab.com/gitlab-org/gitlab-ce/issues/25376
2017-02-08CI runs lint on shell scripts in lib/supportJames Edwards-Jones
2017-02-03Merge branch 'master' into jej-pages-picked-from-eeJames Edwards-Jones
2017-02-02Active tense test coverageValery Sizov
Ports changes from https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/642 back into CE
2017-02-01Add GitLab PagesKamil Trzcinski
- The pages are created when build artifacts for `pages` job are uploaded - Pages serve the content under: http://group.pages.domain.com/project - Pages can be used to serve the group page, special project named as host: group.pages.domain.com - User can provide own 403 and 404 error pages by creating 403.html and 404.html in group page project - Pages can be explicitly removed from the project by clicking Remove Pages in Project Settings - The size of pages is limited by Application Setting: max pages size, which limits the maximum size of unpacked archive (default: 100MB) - The public/ is extracted from artifacts and content is served as static pages - Pages asynchronous worker use `dd` to limit the unpacked tar size - Pages needs to be explicitly enabled and domain needs to be specified in gitlab.yml - Pages are part of backups - Pages notify the deployment status using Commit Status API - Pages use a new sidekiq queue: pages - Pages use a separate nginx config which needs to be explicitly added
2017-01-09Restore backup correctly when "BACKUP" environment variable is passedAdam Niedzielski
2016-12-16Add LDAP task to rename a providerDrew Blessing
Sometimes admins will change the LDAP configuration, not realizing that problems will occur if the user's LDAP identities are not also updated to use the new provider name. This task will give admins a single command to run to update identities and will prevent having to run multiple Rails console queries.
2016-12-01Don't allow to specify a repo or version when installing WorkhorseRémy Coutable
The task will use the canonical repo and the required version. Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-12-01Merge branch '23718/backup-rake-task-human-readable' into 'master' Douwe Maan
23718/backup rake task human readable ## What does this MR do? Add the human readable format to the backup tar file. From `1477317140_gitlab_backup.tar` to `1477317140_2016_10_24_gitlab_backup.tar`. ## Are there points in the code the reviewer needs to double check? ## Why was this MR needed? #23718 issue ## Screenshots (if relevant) ## 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 - [x] 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? 23718 See merge request !7188
2016-11-30Move task helpers to a moduleRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-11-30Add Human Readable Timestamp to backup tar fileDavid Gerő
2016-11-30Add #run_command! to task helpers to raise a TaskFailedError if status is not 0Rémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-11-30New `gitlab:workhorse:install` rake taskRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
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-01Add Rake task to create/repair GitLab Shell hooks symlinksDrew Blessing
2016-10-27Backups do not fail anymore when using tar on annex and custom_hookstiagonbotelho
only.
2016-10-24fixes build with cache:clear issuetiagonbotelho
2016-10-11Add a new gitlab:users:clear_all_authentication_tokens taskRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-08-11Use `File::exist?` instead of `File::exists?`bogdanvlviv
Since version ruby-2.2.0, method `File::exists?` is deprecated.
2016-08-09adds second batch of tests changed to active tensetiagonbotelho
2016-07-01Enable Style/EmptyLines cop, remove redundant onesGrzegorz Bizon
2016-06-30Refactor repository paths handling to allow multiple git mount pointsAlejandro Rodríguez
2016-05-25Switch the gitlab:db:configure task to use tables.any? instead of looking ↵DJ Mountney
specifically for the schema_migrations table
2016-05-25Add tests for the gitlab:db:configure rake taskDJ Mountney
2016-05-23Fix backups if registry is disabledKamil Trzcinski
2016-05-17Added backup of container registryKamil Trzcinski