diff options
author | Clement Ho <clemmakesapps@gmail.com> | 2018-03-01 23:50:00 +0000 |
---|---|---|
committer | Clement Ho <clemmakesapps@gmail.com> | 2018-03-01 23:50:00 +0000 |
commit | 3de58a246dfcc46dbccb2eabe02e8a8241ba5080 (patch) | |
tree | 367c87c394faadd0e465048a84ca236c3627436f /vendor | |
parent | faade54a71435c9a6337251df01d7b40e75fa22f (diff) | |
parent | 59de0443edba21a2110f783a4b2595bc02e7db0f (diff) | |
download | gitlab-ce-refactor-protected-branches.tar.gz |
Merge branch 'master' into 'refactor-protected-branches'refactor-protected-branches
# Conflicts:
# config/webpack.config.js
Diffstat (limited to 'vendor')
-rw-r--r-- | vendor/runner/values.yaml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/vendor/runner/values.yaml b/vendor/runner/values.yaml new file mode 100644 index 00000000000..b7e2e24acaf --- /dev/null +++ b/vendor/runner/values.yaml @@ -0,0 +1,25 @@ +## Configure the maximum number of concurrent jobs +## - Documentation: https://docs.gitlab.com/runner/configuration/advanced-configuration.html#the-global-section +## - Default value: 10 +## - Currently don't support auto-scaling. +concurrent: 4 + +## Defines in seconds how often to check GitLab for a new builds +## - Documentation: https://docs.gitlab.com/runner/configuration/advanced-configuration.html#the-global-section +## - Default value: 3 +checkInterval: 3 + +## For RBAC support +rbac: + create: false + clusterWideAccess: false + +## Configuration for the Pods that that the runner launches for each new job +## +runners: + image: ubuntu:16.04 + privileged: false + builds: {} + services: {} + helpers: {} +resources: {} |