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
2020-12-17Add latest changes from gitlab-org/gitlab@13-7-stable-eev13.7.0-rc42GitLab Bot
2020-11-19Add latest changes from gitlab-org/gitlab@13-6-stable-eev13.6.0-rc42GitLab Bot
2020-09-19Add latest changes from gitlab-org/gitlab@13-4-stable-eeGitLab Bot
2020-07-20Add latest changes from gitlab-org/gitlab@13-2-stable-eeGitLab Bot
2020-06-18Add latest changes from gitlab-org/gitlab@13-1-stable-eeGitLab Bot
2020-05-20Add latest changes from gitlab-org/gitlab@13-0-stable-eeGitLab Bot
2020-03-26Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-03-24Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-03-09Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-02-27Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-15Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-14Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-07Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-12-16Add latest changes from gitlab-org/gitlab@masterogolowinski-master-patch-80898GitLab Bot
2019-12-12Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-12-05Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-22Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-05Merge branch 'group_level_jupyterhub' into 'master'Robert Speicher
Group level JupyterHub See merge request gitlab-org/gitlab-ce!32512
2019-09-05Bring method back that was mistakenly removedJoão Cunha
- We're also improving specs to avoid this could happen again
2019-09-05Allow group install of JupyterHubJames Fargher
Removes limitations on cluster types that can install JupyterHub
2019-08-29DRY check progress servicesJoão Cunha
Extract duplicated code from two similar classes into a parent one.
2019-07-16Enable GitLabb runner to be uninstalled from clusterJoão Cunha
- Set as uninstallable app - Update docs - Adjust specs
2019-05-06Show health graphs on group-levelPeter Leitzen
Tweak cluster helper and refactor its specs.
2019-04-30Add a newline in spec for readabilityStan Hu
2019-04-30Rename #timeouted -> #timed_outDylan Griffith
2019-04-30Minor refactoring in check_uninstall_progress_service_specDylan Griffith
2019-04-30Fix uninstall specs: helm not uninstallableDylan Griffith
2019-04-30DELETE clusters/:id/:application endpointThong Kuah
Add endpoint to delete/uninstall a cluster application
2019-04-30Destroy app on successful uninstallationThong Kuah
Rescue and put into :uninstall_errored if something goes wrong while destroying, which can happen. I think it is safe to expose the full error message from the destroy error. Remove the :uninstalled state as no longer used.
2019-04-30Services to uninstall cluster applicationThong Kuah
+ to monitor progress of uninstallation pod
2019-04-12Merge branch 'frozen_string_literal_spec_services' into 'master'Michael Kozono
Add frozen_string_literal to spec/services See merge request gitlab-org/gitlab-ce!27267
2019-04-12Do not rescue errors from state transitionsThong Kuah
As this are un-expected errors which we should hear about from Sentry. Still rescue StandardError when operating a Helm action as we can get non Kubeclient errors such as SSL certificate or network errors
2019-04-12Add frozen_string_literal to spec/servicesThong Kuah
Probably useful as we often move these files to "new" files.
2019-04-04Refactor to share tests for base class methodThong Kuah
DRY up tests for logging error.
2019-04-04Show backtrace when logging to kubernetes.logThong Kuah
Just the error message and error class alone makes it hard to determine the full context of any errors, so we need to know where the error is occuring as well.
2019-03-26Allow runners to be installed on group clustersTiger Watson
A runner installed on a cluster will now use the cluster's `cluster_type` as its `runner_type`.
2019-03-08Add support for ingress hostnameswalkafwalka
2019-03-05Rename ClusterUpdateAppWorker to ClusterPatchAppWorkerJoão Cunha
- This is to avoid colision with EE ClusterUpdateAppWorker
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
2019-02-26Get rid of ScheduleInstallationServiceJoão Cunha
- deletes schedule_installation_service.rb - moves schedule_installation_service.rb logic to create_service.rb - moves specs as well Removes code duplication Remove unecessary spec block Abide review suggestions Test installable applications which are not associated to a cluster Fix a typo Removes duplciated expectation Reuse variable instead of redefining Remove method in favor of a local scoped lambda Improve 'failing service' shared examples Test the increase of status count Remove duplicated test Enable fronzen literal
2019-02-08Upgrade cluster applications, starting with runnerThong Kuah
2018-12-07Allows user to override default issuer email for cert managerAmit Rathi
2018-11-27Merge branch 'json-logging-for-k8s' into 'master'Stan Hu
Json logging for k8s Integration See merge request gitlab-org/gitlab-ce!23328
2018-11-27Use JSON logging for helm install servicesDylan Griffith
2018-11-27Merge branch '51792-dont-delete-failed-install-pods' into 'master'Dmitriy Zaporozhets
Don't remove failed install pods Closes #51792 See merge request gitlab-org/gitlab-ce!23350
2018-11-27Don't remove failed install podsDylan Griffith
We want to keep failed install pods around so that it is easier to debug why a failure occured. With this change we also need to ensure that we remove a previous pod with the same name before installing so that re-install does not fail. Another change here is that we no longer need to catch errors from delete_pod! in CheckInstallationProgressService as we now catch the ResourceNotFoundError in Helm::Api. The catch statement in CheckInstallationProgressService was also probably too broad before and should have been narrowed down simply to ResourceNotFoundError.
2018-11-26Expose external_ip to knative cluster applicationChris Baumbauer
2018-11-13Show HTTP response code for Kubernetes errorsThong Kuah
2018-11-08Do not allow applications for group clustersThong Kuah
These applications will need further work in future issues to enable them to work with groups of projects.
2018-11-03Resolve issues raised by KamilChris Baumbauer