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
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-02-08 12:09:09 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-02-08 12:09:09 +0300
commitdc560bd238764df34382017e23f2667ade0c7a2d (patch)
tree28667f7bf4ce71ceb455a5139682860a8a6df628
parent6397f0322d3841d98d64e9c60bb84b94c40617d7 (diff)
Add latest changes from gitlab-org/gitlab@master
-rw-r--r--doc/ci/pipelines.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/ci/pipelines.md b/doc/ci/pipelines.md
index 161160f7218..2bf5592885b 100644
--- a/doc/ci/pipelines.md
+++ b/doc/ci/pipelines.md
@@ -144,6 +144,13 @@ The union of A, B, and C is (1, 4) and (6, 7). Therefore, the total running time
(4 - 1) + (7 - 6) => 4
```
+### How pipeline quotas are used
+
+Each user has a personal pipeline quota that tracks the usage of shared runners in all personal projects.
+Each group has a [usage quota](../subscriptions/index.md#ci-pipeline-minutes) that tracks the usage of shared runners for all projects created within the group.
+
+When a pipeline is triggered, regardless of who triggered it, the pipeline quota for the project owner's [namespace](../user/group/index.md#namespaces) is used. In this case, the namespace can be the user or group that owns the project.
+
### Expanding and collapsing job log sections
> [Introduced](https://gitlab.com/gitlab-org/gitlab-foss/issues/14664) in GitLab