summaryrefslogtreecommitdiff
path: root/common (follow)
Commit message (Expand)AuthorAgeFilesLines
* Removed suspicious condition which is always true.Alexander Kutelev2019-08-051-4/+2
* Fix some linting issuesSimon Jürgensmeyer2019-07-182-4/+5
* Correct spelling in help stringEvan Read2019-07-171-1/+1
* Add config() stage for Custom executor managementTomasz Maczukin2019-07-091-0/+4
* Add custom executorKamil Trzciński2019-07-084-4/+41
* Add missing test cases for s3 IAM checks•••ShouldUseIAMCredentials checks if any of the fields are empty if one of them is empty it will return true. Most test cases are missing, the only thing tested is when all fields are empty. In https://gitlab.com/gitlab-org/gitlab-runner/merge_requests/1365#note_183850614 a change was made that would have broken the check but CI did not catch this. Steve Azzopardi2019-06-211-0/+101
* Merge branch 'store-traces-on-disk' into 'master'•••Store traces on disk See merge request gitlab-org/gitlab-runner!1315Tomasz Maczukin2019-05-312-3/+10
|\
| * Store temporary traces on diskKamil Trzciński2019-04-252-8/+26
* | Merge branch 'security-context' into 'master'•••Allow configuration of Pod Security Context by Kubernetes Exeutor See merge request gitlab-org/gitlab-runner!1036Tomasz Maczukin2019-05-301-36/+65
|\ \
| * | changes per mr commentsDavid Schile2019-05-291-1/+1
| * | Merge branch 'master' into security-contextDavid Schile2019-05-297-310/+52
| |\ \
| * | | ran go fmtDave Schile2019-04-191-5/+5
| * | | doc and pointers in structDavid Schile2019-04-191-4/+24
| * | | merged upstream masterDavid Schile2019-04-197-111/+74
| |\ \ \
| * \ \ \ Merge branch 'master' into security-contextDavid Schile2019-04-054-30/+430
| |\ \ \ \
| * | | | | misnamed structDavid Schile2019-03-261-37/+37
| * | | | | merged security-contextDavid Schile2019-03-261-7/+7
| |\ \ \ \ \
| | * | | | | fixed merge of configDave Schile2019-01-091-36/+1
| | * | | | | merged upstream master and fixed node tolerations conflictDave Schile2019-01-095-12/+340
| | |\ \ \ \ \
| | * | | | | | corrections per merge request.Dave Schile2018-12-291-43/+43
| * | | | | | | merged current masterDavid Schile2019-03-2616-131/+646
| |\ \ \ \ \ \ \ | | |/ / / / / / | |/| | | | | |
| * | | | | | | Merge branch 'master' into security-contextDave Schile2018-12-127-52/+361
| |\ \ \ \ \ \ \
| * | | | | | | | conform to snake case toml keysDavid Schile2018-09-281-6/+6
| * | | | | | | | Update config.go to remove typo in RunAsGroupDavid Schile2018-09-281-1/+1
| * | | | | | | | qa and gofmt fixesDavid Schile2018-09-281-41/+41
| * | | | | | | | adding in security context configDavid Schile2018-09-271-6/+6
| * | | | | | | | add security context structsDavid Schile2018-09-241-35/+44
* | | | | | | | | Merge branch '4069-remove-support-for-old-clone-fetch-methods' into 'master'•••Remove deprecated clone/fetch command Closes #4069 See merge request gitlab-org/gitlab-runner!1372Tomasz Maczukin2019-05-301-10/+0
|\ \ \ \ \ \ \ \ \
| * | | | | | | | | Remove deprecated clone/fetch command•••GitLab Runner now requires Refspec information in the job response to clone the project which is sent from a GitLab instance that is running version %11.9+. If Refspec is not present a fallback to the deprecated commands was done. closes https://gitlab.com/gitlab-org/gitlab-runner/issues/4069 Steve Azzopardi2019-05-241-10/+0
* | | | | | | | | | Add configuration of access_level for runners on registration•••Allow setting access_level of new runner to not_protected (default) or ref_protected Minor update to relevant docs and tests See https://gitlab.com/gitlab-org/gitlab-runner/issues/3186 zelin-l2019-05-291-0/+1
| |_|_|_|_|_|_|/ / |/| | | | | | | |
* | | | | | | | | Merge branch '4070-remove-deprecated-cache-configuration' into 'master'•••Remove support for deprecated S3 cache configuration Closes #4070 See merge request gitlab-org/gitlab-runner!1367Steve Azzopardi2019-05-282-240/+2
|\ \ \ \ \ \ \ \ \
| * | | | | | | | | Remove support for deprecated S3 cache configurationTomasz Maczukin2019-05-282-240/+2
| |/ / / / / / / /
* | | | | | | | | Merge branch '4073-remove-deprecated-k8s-entrypoint-ff' into 'master'•••Remove support for deprecated entrypoint configuration for K8S Closes #4073 See merge request gitlab-org/gitlab-runner!1369Steve Azzopardi2019-05-281-4/+4
|\ \ \ \ \ \ \ \ \
| * | | | | | | | | Remove support for deprecated entrypoint configuration for K8STomasz Maczukin2019-05-271-4/+4
| |/ / / / / / / /
* / / / / / / / / Remove support for deprecated metrics_server settingTomasz Maczukin2019-05-231-16/+0
|/ / / / / / / /
* | | | | | | | Added service proxy to the kubernetes executor•••In this commit we add new session endpoint like `/proxy/buildOrService/port/requestedURI`. Through this endpoint we will be able to proxy requests to services running inside each service container. At the moment only the kubernetes executor implements this new functionality Francisco Javier López2019-05-232-0/+13
* | | | | | | | Update mocks•••We again have some of our mocks not aligned with what mockery autogenerates. This MR updates all affected **existing** mocks, so calling `make mocks` will not have side effects in specific MRs. Tomasz Maczukin2019-05-061-5/+16
* | | | | | | | Add support for PowerShell for helper image•••A default command is passed to the helper image container when it starts, since it's specific to Linux it take in consideration which OS is being used. The helperimage package now also controls the command that are used by default. Steve Azzopardi2019-05-041-7/+0
* | | | | | | | Refactor k8s executor to use helperimage package•••The Kubernetes executor is using the same logic to build the helper image tag, which is just duplicated from the docker executor, start using the helperimage to use the same implementation. Steve Azzopardi2019-04-231-16/+1
* | | | | | | | Prepare single source of thruth for defined feature flagsTomasz Maczukin2019-04-191-22/+16
| |_|_|_|_|/ / |/| | | | | |
* | | | | | | Merge branch 'add-ff-for-builds-dir' into 'master'•••Allow to use FF to configure `/builds` folder See merge request gitlab-org/gitlab-runner!1319Steve Azzopardi2019-04-181-0/+2
|\ \ \ \ \ \ \
| * | | | | | | Allow to configure FF using config.tomlKamil Trzciński2019-04-181-1/+1
| * | | | | | | Allow to use FF to configure `/builds` folderKamil Trzciński2019-04-181-0/+2
* | | | | | | | Allow to configure FF using config.tomlKamil Trzciński2019-04-182-1/+35
|/ / / / / / /
* | | | | | | Merge branch 'patch-3' into 'master'•••Typo: varialbes -> variables See merge request gitlab-org/gitlab-runner!1316Steve Azzopardi2019-04-181-1/+1
|\ \ \ \ \ \ \
| * | | | | | | Typo: varialbes -> variablesSergio Oller2019-04-171-1/+1
| | |_|_|_|_|/ | |/| | | | |
* | | | | | | Merge branch 'cleanup-feature-flags-mess' into 'master'•••Cleanup feature flags mess See merge request gitlab-org/gitlab-runner!1312Steve Azzopardi2019-04-171-4/+8
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | |
| * | | | | | Use consts and define explicitly default values for all FFsTomasz Maczukin2019-04-171-4/+8
* | | | | | | Optimise trace handling•••This makes all traces to be send in chunks and to only use incremental sending endpoint. This makes GitLab Runner to efficiently append traces in small chunks, and to not resend unless explicitly requested. Kamil Trzciński2019-04-164-96/+8
|/ / / / / /
* | | | | | Merge branch '4123-ci-cd-updating-initializing-submodules-does-not-do-a-lfs-p...•••Fix git lfs not getting submodule objects Closes #4123 See merge request gitlab-org/gitlab-runner!1298Tomasz Maczukin2019-04-091-0/+15
|\ \ \ \ \ \