1. 23 10月, 2019 2 次提交
  2. 18 10月, 2019 2 次提交
  3. 16 10月, 2019 2 次提交
  4. 14 10月, 2019 1 次提交
  5. 11 10月, 2019 1 次提交
  6. 09 10月, 2019 1 次提交
  7. 08 10月, 2019 1 次提交
  8. 04 10月, 2019 1 次提交
  9. 02 10月, 2019 1 次提交
  10. 01 10月, 2019 2 次提交
  11. 25 9月, 2019 1 次提交
  12. 17 9月, 2019 1 次提交
  13. 11 9月, 2019 1 次提交
  14. 05 9月, 2019 1 次提交
    • F
      CE port for pipelines for external pull requests · ca6a1f33
      Fabio Pitino 提交于
      Detect if pipeline runs for a GitHub pull request
      
      When using a mirror for CI/CD only we register a pull_request
      webhook. When a pull_request webhook is received, if the
      source branch SHA matches the actual head of the branch in the
      repository we create immediately a new pipeline for the
      external pull request. Otherwise we store the
      pull request info for when the push webhook is received.
      
      When using "only/except: external_pull_requests" we can detect
      if the pipeline has a open pull request on GitHub and create or
      not the job based on that.
      ca6a1f33
  15. 31 8月, 2019 1 次提交
  16. 26 8月, 2019 1 次提交
  17. 16 8月, 2019 2 次提交
    • A
      Migrations for Cycle Analytics backend · ca6cfde5
      Adam Hegyi 提交于
      This change lays the foundation for customizable cycle analytics stages.
      The main reason for the change is to extract the event definitions to
      separate objects (start_event, end_event) so that it could be easily
      customized later on.
      ca6cfde5
    • B
      Allow disabling group/project email notifications · 3489dc3d
      Brett Walker 提交于
      - Adds UI to configure in group and project settings
      - Removes notification configuration for users when
      disabled at group or project level
      3489dc3d
  18. 14 8月, 2019 1 次提交
    • B
      Rework retry strategy for remote mirrors · 452bc36d
      Bob Van Landuyt 提交于
      **Prevention of running 2 simultaneous updates**
      
      Instead of using `RemoteMirror#update_status` and raise an error if
      it's already running to prevent the same mirror being updated at the
      same time we now use `Gitlab::ExclusiveLease` for that.
      
      When we fail to obtain a lease in 3 tries, 30 seconds apart, we bail
      and reschedule. We'll reschedule faster for the protected branches.
      
      If the mirror already ran since it was scheduled, the job will be
      skipped.
      
      **Error handling: Remote side**
      
      When an update fails because of a `Gitlab::Git::CommandError`, we
      won't track this error in sentry, this could be on the remote side:
      for example when branches have diverged.
      
      In this case, we'll try 3 times scheduled 1 or 5 minutes apart.
      
      In between, the mirror is marked as "to_retry", the error would be
      visible to the user when they visit the settings page.
      
      After 3 tries we'll mark the mirror as failed and notify the user.
      
      We won't track this error in sentry, as it's not likely we can help
      it.
      
      The next event that would trigger a new refresh.
      
      **Error handling: our side**
      
      If an unexpected error occurs, we mark the mirror as failed, but we'd
      still retry the job based on the regular sidekiq retries with
      backoff. Same as we used to
      
      The error would be reported in sentry, since its likely we need to do
      something about it.
      452bc36d
  19. 13 8月, 2019 1 次提交
    • S
      Reduce Gitaly calls in PostReceive · 4e2bb4e5
      Stan Hu 提交于
      This commit reduces I/O load and memory utilization during PostReceive
      for the common case when no project hooks or services are set up.
      
      We saw a Gitaly N+1 issue in `CommitDelta` when many tags or branches
      are pushed. We can reduce this overhead in the common case because we
      observe that most new projects do not have any Web hooks or services,
      especially when they are first created. Previously, `BaseHooksService`
      unconditionally iterated through the last 20 commits of each ref to
      build the `push_data` structure. The `push_data` structured was used in
      numerous places:
      
      1. Building the push payload in `EventCreateService`
      2. Creating a CI pipeline
      3. Executing project Web or system hooks
      4. Executing project services
      5. As the return value of `BaseHooksService#execute`
      6. `BranchHooksService#invalidated_file_types`
      
      We only need to generate the full `push_data` for items 3, 4, and 6.
      
      Item 1: `EventCreateService` only needs the last commit and doesn't
      actually need the commit deltas.
      
      Item 2: In addition, `Ci::CreatePipelineService` only needed a subset of
      the parameters.
      
      Item 5: The return value of `BaseHooksService#execute` also wasn't being
      used anywhere.
      
      Item 6: This is only used when pushing to the default branch, so if
      many tags are pushed we can save significant I/O here.
      
      Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/65878
      
      Fic
      4e2bb4e5
  20. 09 8月, 2019 1 次提交
  21. 07 8月, 2019 2 次提交
    • T
      Use separate Kubernetes namespaces per environment · 36a01a88
      Tiger Watson 提交于
      Kubernetes deployments on new clusters will now have
      a separate namespace per project environment, instead
      of sharing a single namespace for the project.
      
      Behaviour of existing clusters is unchanged.
      
      All new functionality is controlled by the
      :kubernetes_namespace_per_environment feature flag,
      which is safe to enable/disable at any time.
      36a01a88
    • M
      Fix nil take regression · 56876070
      Matija Čupić 提交于
      56876070
  22. 01 8月, 2019 1 次提交
  23. 31 7月, 2019 1 次提交
  24. 26 7月, 2019 2 次提交
  25. 25 7月, 2019 1 次提交
  26. 24 7月, 2019 2 次提交
  27. 23 7月, 2019 1 次提交
  28. 22 7月, 2019 1 次提交
  29. 13 7月, 2019 1 次提交
  30. 27 6月, 2019 1 次提交
    • T
      Remove group_clusters feature flag · 3f759e16
      Thong Kuah 提交于
      Now we have terminals for instance and group clusters we can remove the
      FF now. Deploying to group clusters has been working without complaints
      too.
      3f759e16
  31. 21 6月, 2019 1 次提交
  32. 18 6月, 2019 1 次提交
    • J
      Make KubernetesService readonly · 6b9157d5
      James Fargher 提交于
      We are deprecating this service in favor of instance wide clusters.
      Therefore we removed some code that is not anymore needed for a
      readonly cluster and also we added some flags to allow for this
      deprecation. These flags are to be removed in the next release when
      we finally completelly remove KubernetesService.
      6b9157d5