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
2019-04-30DELETE clusters/:id/:application endpointThong Kuah
Add endpoint to delete/uninstall a cluster application
2019-03-09Filter merge requests by target branchHiroyuki Sato
2019-03-05Creates Clusterss::ApplciationsController update endpointJoão Cunha
- Creates new route - Creates new controller action - Creates call stack: Clusterss::ApplciationsController calls --> Clusters::Applications::UpdateService calls --> Clusters::Applications::ScheduleUpdateService calls --> ClusterUpdateAppWorker calls --> Clusters::Applications::PatchService --> ClusterWaitForAppInstallationWorker DRY req params Adds gcp_cluster:cluster_update_app queue Schedule_update_service is uneeded Extract common logic to a parent class (UpdateService will need it) Introduce new UpdateService Fix rescue class namespace Fix RuboCop offenses Adds BaseService for create and update services Remove request_handler code duplication Fixes update command Move update_command to ApplicationCore so all apps can use it Adds tests for Knative update_command Adds specs for PatchService Raise error if update receives an unistalled app Adds update_service spec Fix RuboCop offense Use subject in favor of go Adds update endpoint specs for project namespace Adds update endpoint specs for group namespace
2018-11-07Merge branch '52767-more-chaos-for-gitlab' into 'master'Sean McGivern
Add more chaos to GitLab Closes #53362 and #52767 See merge request gitlab-org/gitlab-ce!22746
2018-11-01Add documentation, secure routes, etcAndrew Newdigate
2018-11-01Leak memory, spin cpu and kill the processAndrew Newdigate
2018-11-01Adding chaos to GitLab through chaos endpointsAndrew Newdigate
2018-11-01Resolve controller sharing concernThong Kuah
Use ClustersController as base while having Projects::ClustersController to inform what `clusterable` is. Thanks @ayufan for the great suggestion ! - View changes to work with new approach - Fix javascript for new approach - Fix feature specs for new approach - Fix QA
2018-11-01Abstract out project out of ClustersControllerThong Kuah
To the extent possible swap out `project` with `clusterable` - Abstract paths for showing cluster or clusters. This will allow us to swap in alternative paths for group level cluster - Push :project_id and :namespace_id params from the URL to the POST body. - Create a nice helper for to generate links for the destroy action For some reason, spec :project_id and :namespace_id param are not going through `to_param` for a JSON format. Manually call `to_param` to fix specs. - Move :layout to BaseController
2018-11-01Convert clusters to use a top-level controllerThong Kuah
In preparation so that we can create both cluster attached to project and cluster attached to group. - Move ClustersController to top level - Move Clusters::ApplicationsController to top-level too - Creates a Clusters::BaseController to share common functions - Do not rely on @project ivar. Anything could set the ivar. - Fix Vue page components due to new data-page value Because of the controller change we have gone from `projects:clusters:new` to `clusters:new`, so we need to update the file location of the page components. There is somewhere a function that will convert data-page to a file location. On that note, projects/clusters/gcp/new/, translate to Projects::Clusters::Gcp#new doesn't exist so replace that with clusters/create_gcp/ and clusters/create_user/
2018-10-27Backport CE route changes for Ops Dashboard in EEPeter Leitzen
2018-10-26Extract EE only oauth routes and add testsLin Jen-Shin
2018-10-13Remove Koding integration and documentationStan Hu
This integration no longer works and does not appear to be supported. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/39697
2018-10-10Remove Git circuit breakerZeger-Jan van de Weg
Was introduced in the time that GitLab still used NFS, which is not required anymore in most cases. By removing this, the API it calls will return empty responses. This interface has to be removed in the next major release, expected to be 12.0.
2018-09-12Fix route deprecation warnings in rails 5Jan Provaznik
2018-08-21Backport of gitlab-org/gitlab-ee!6876Mario de la Ossa
2018-07-31Merge branch 'master' into ↵Luke Bennett
'41416-making-instance-wide-data-tools-more-accessible' # Conflicts: # app/models/application_setting.rb # lib/api/settings.rb
2018-07-29Use /-/health instead of breaking /-/livenessStan Hu
2018-07-29Simplify /-/liveness check to avoid connecting to the databaseStan Hu
The previous implementation would hit the database each time and provide a dummy response. If the database goes down, this means all application workers would be taken out of service. Simplify this check by using a Rails middleware that intercepts this endpoint and returns a 200 response.
2018-07-27Scope instance_statistics to dashLuke Bennett
2018-07-27Create instance_statistics namespace and move convdev index and cohorts to itLuke Bennett
2018-07-27Revert "Merge branch '41416-making-instance-wide-data-tools-more-accessible' ↵Sean McGivern
into 'master'" This reverts merge request !20679
2018-07-26Scope instance_statistics to dashLuke Bennett
2018-07-26Create instance_statistics namespace and move convdev index and cohorts to itLuke Bennett
2018-06-18Redirect favicon.(png|ico) to actual favicon asset or uploadDouwe Maan
2018-03-20Move IDE to CEPhil Hughes
This also makes the IDE generally available
2018-03-19Show Ajax requests in performance barSean McGivern
But first, rewrite the performance bar in Vue: 1. Remove the peek-host gem and replace it with existing code. This also allows us to include the host in the JSON response, rather than in the page HTML. 2. Leave the line profiler parts as here-be-dragons: nicer would be a separate endpoint for these, so we could use them on Ajax requests too. 3. The performance bar is too fiddly to rewrite right now, so apply the same logic to that. Then, add features! All requests made through Axios are able to be tracked. To keep a lid on memory usage, only the first two requests for a given URL are tracked, though. Each request that's tracked has the same data as the initial page load, with the exception of the performance bar and the line profiler, as explained above.
2018-03-02Remove IDE from CEPhil Hughes
2018-02-03Rename Callout to UserCalloutMatija Čupić
2018-02-03Refactor CalloutsControllerMatija Čupić
2018-01-27Move Callouts route to - pathMatija Čupić
2018-01-27Implement Callouts controllerMatija Čupić
2017-12-21Resolve "Decouple multi-file editor from file list"Tim Zallmann
2017-12-08Move the circuitbreaker check out in a separate processBob Van Landuyt
Moving the check out of the general requests, makes sure we don't have any slowdown in the regular requests. To keep the process performing this checks small, the check is still performed inside a unicorn. But that is called from a process running on the same server. Because the checks are now done outside normal request, we can have a simpler failure strategy: The check is now performed in the background every `circuitbreaker_check_interval`. Failures are logged in redis. The failures are reset when the check succeeds. Per check we will try `circuitbreaker_access_retries` times within `circuitbreaker_storage_timeout` seconds. When the number of failures exceeds `circuitbreaker_failure_count_threshold`, we will block access to the storage. After `failure_reset_time` of no checks, we will clear the stored failures. This could happen when the process that performs the checks is not running.
2017-11-22Speed up Unicorn specs by using a dummy Rack application instead of GitLabNick Thomas
2017-10-13Move global boards routes under "-" scopeValery Sizov
2017-09-25Create Kubernetes cluster on GKE from k8s serviceShinya Maeda
2017-09-06Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ce into ↵Simon Knox
ee_issue_928_backport
2017-08-30Add filter by my reactionHiroyuki Sato
2017-08-29Group boards CE backportFelipe Artur
2017-06-09Fix linting, route, and specsRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-06-09New performance bar that can be enabled with the `p b` shortcutRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-06-02Add prometheus text formatterPawel Chojnacki
+ rename controler method to #index from #metrics + remove assertion from nullMetric
2017-06-02Use only ENV for metrics folder locationPawel Chojnacki
2017-05-24Revert "Remove changes that are not absolutely necessary"Douwe Maan
This reverts commit b0498c176fa134761d899c9b369be12f1ca789c5
2017-04-26Add test that asserts unicorns terminateJacob Vosmaer
2017-04-07Add /-/readiness /-/liveness and /-/health_metrics endpoints to track ↵Paweł Chojnacki
application readiness
2017-03-07Implement OpenID Connect identity providerMarkus Koller
2017-03-06Use native unicode emojisEric Eastwood
- gl_emoji for falling back to image/css-sprite when the browser doesn't support an emoji - Markdown rendering (Banzai filter) - Autocomplete - Award emoji menu - Perceived perf - Immediate response because we now build client-side - Update `digests.json` generation in gemojione rake task to be more useful and include `unicodeVersion` MR: !9437 See issues - #26371 - #27250 - #22474
2016-12-12Don't require `API::API` in routesRémy Coutable
`API::API` is autoloaded and shouldn't be required in non-autoloaded code. Otherwise, we get the following dreaded error: A copy of API::Helpers has been removed from the module tree but is still active! Signed-off-by: Rémy Coutable <remy@rymai.me>