1. 05 3月, 2019 1 次提交
    • J
      Creates Clusterss::ApplciationsController update endpoint · f8234d9a
      Joã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
      f8234d9a
  2. 01 3月, 2019 4 次提交
  3. 27 2月, 2019 1 次提交
    • J
      Add project http fetch statistics API · 5ae9a44a
      Jacopo 提交于
      The API get projects/:id/traffic/fetches allows user with write
      access to the repository to get the number of clones for the
      last 30 days.
      5ae9a44a
  4. 26 2月, 2019 1 次提交
    • S
      Fix Etag expiration for forked projects · c5c71299
      Stan Hu 提交于
      When a pipeline is for a forked merge request, we have to invalidate
      the ETag for both the target and source project pipelines. Before
      we were only invalidating the target project's pipeline.
      c5c71299
  5. 21 2月, 2019 1 次提交
  6. 15 2月, 2019 1 次提交
    • S
      Update Metrics references to Object path · e6fcdd7a
      Sarah Yasonik 提交于
      On reload, references to Metrics within classes in the Gitlab::Metrics
      module fail. Update all references to ::Gitlab::Metrics so that
      constant lookup finds the right module in development. This fix should
      not impact production.
      e6fcdd7a
  7. 08 2月, 2019 1 次提交
  8. 06 2月, 2019 2 次提交
  9. 05 2月, 2019 1 次提交
  10. 26 1月, 2019 3 次提交
  11. 25 1月, 2019 1 次提交
    • K
      Add Container Registry API · 045d07ba
      Kamil Trzciński 提交于
      This includes a set of APIs to manipulate container registry.
      This includes also an ability to delete tags based on requested
      criteria, like keep-last-n, matching-name, older-than.
      045d07ba
  12. 24 1月, 2019 2 次提交
  13. 21 1月, 2019 2 次提交
  14. 15 1月, 2019 1 次提交
    • S
      Only send one notification for failed remote mirror · 6fbbd4ab
      Stan Hu 提交于
      Retries in Sidekiq and in the remote mirror scheduler can cause repeated
      attempts in quick succession if the sync fails. Each failure will then
      send an e-mail to all project maintainers, which can spam users
      unnecessarily.
      
      Modify the logic to send one notification the first time the mirror
      fails by setting `error_notification_sent` to `true` and reset the
      flag after a successful sync.
      
      Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/56222
      6fbbd4ab
  15. 14 1月, 2019 1 次提交
    • Z
      Ensure pool participants are linked before GC · e03602e0
      Zeger-Jan van de Weg 提交于
      In theory the case could happen that the initial linking of the pool
      fails and so do all the retries that Sidekiq performs. This could lead
      to data loss.
      
      To prevent that case, linking is done before Gits GC too. This makes
      sure that case doesn't happen.
      e03602e0
  16. 09 1月, 2019 1 次提交
  17. 07 1月, 2019 2 次提交
  18. 04 1月, 2019 1 次提交
  19. 01 1月, 2019 1 次提交
    • J
      Add support for Git push options, specifically ci.skip · ba781484
      Jonathon Reinhart 提交于
      gitlab-org/gitlab-shell!166 added support for collecting push options
      from the environment, and passing them along to the
      /internal/post_receive API endpoint.
      
      This change handles the new push_options JSON element in the payload,
      and passes them on through to the GitPushService and GitTagPushService
      services.
      
      Futhermore, it adds support for the first push option, ci.skip.  With
      this change, one can use 'git push -o ci.skip' to skip CI pipe
      execution. Note that the pipeline is still created, but in the "skipped"
      state, just like with the 'ci skip' commit message text.
      
      Implements #18667
      ba781484
  20. 21 12月, 2018 2 次提交
  21. 19 12月, 2018 2 次提交
  22. 12 12月, 2018 1 次提交
  23. 08 12月, 2018 1 次提交
    • Z
      Allow public forks to be deduplicated · 896c0bdb
      Zeger-Jan van de Weg 提交于
      When a project is forked, the new repository used to be a deep copy of everything
      stored on disk by leveraging `git clone`. This works well, and makes isolation
      between repository easy. However, the clone is at the start 100% the same as the
      origin repository. And in the case of the objects in the object directory, this
      is almost always going to be a lot of duplication.
      
      Object Pools are a way to create a third repository that essentially only exists
      for its 'objects' subdirectory. This third repository's object directory will be
      set as alternate location for objects. This means that in the case an object is
      missing in the local repository, git will look in another location. This other
      location is the object pool repository.
      
      When Git performs garbage collection, it's smart enough to check the
      alternate location. When objects are duplicated, it will allow git to
      throw one copy away. This copy is on the local repository, where to pool
      remains as is.
      
      These pools have an origin location, which for now will always be a
      repository that itself is not a fork. When the root of a fork network is
      forked by a user, the fork still clones the full repository. Async, the
      pool repository will be created.
      
      Either one of these processes can be done earlier than the other. To
      handle this race condition, the Join ObjectPool operation is
      idempotent. Given its idempotent, we can schedule it twice, with the
      same effect.
      
      To accommodate the holding of state two migrations have been added.
      1. Added a state column to the pool_repositories column. This column is
      managed by the state machine, allowing for hooks on transitions.
      2. pool_repositories now has a source_project_id. This column in
      convenient to have for multiple reasons: it has a unique index allowing
      the database to handle race conditions when creating a new record. Also,
      it's nice to know who the host is. As that's a short link to the fork
      networks root.
      
      Object pools are only available for public project, which use hashed
      storage and when forking from the root of the fork network. (That is,
      the project being forked from itself isn't a fork)
      
      In this commit message I use both ObjectPool and Pool repositories,
      which are alike, but different from each other. ObjectPool refers to
      whatever is on the disk stored and managed by Gitaly. PoolRepository is
      the record in the database.
      896c0bdb
  24. 07 12月, 2018 4 次提交
  25. 06 12月, 2018 1 次提交
    • S
      Remove unnecessary includes of ShellAdapter · e96fd232
      Stan Hu 提交于
      Determined by running the script:
      
      ```
      included = `git grep --name-only ShellAdapter`.chomp.split("\n")
      used = `git grep --name-only gitlab_shell`.chomp.split("\n")
      included - used
      ```
      e96fd232
  26. 05 12月, 2018 1 次提交