summaryrefslogtreecommitdiff
path: root/docs/executors (follow)
Commit message (Expand)AuthorAgeFilesLines
* Merge branch 'patch-4' into 'master'•••fix typo See merge request gitlab-org/gitlab-runner!1503Evan Read2019-07-291-1/+1
|\
| * fix typoMichiel Crefcoeur2019-07-251-1/+1
* | Drop support for Bash shell on Windows until long running issue is addressedBen Bodenmiller2019-07-291-1/+4
|/
* Merge branch 'docs/further-update-min-docker-version' into 'master'•••Further clarify Docker requirements See merge request gitlab-org/gitlab-runner!1486Steve Azzopardi2019-07-231-3/+3
|\
| * Further clarify Docker requirementsEvan Read2019-07-231-4/+4
* | Update docs to specify default shell of OS•••In https://gitlab.com/gitlab-org/gitlab-runner/merge_requests/1406 we changed the default shell for Windows to PowerShell for new registered Runners. It was suggested by users that the documentation is not very clear about it https://gitlab.com/gitlab-org/gitlab-runner/merge_requests/1406#note_194070467. Steve Azzopardi2019-07-231-4/+10
* | Fix markdown in runner docs•••Fix many small issues with markdown, mostly whitespace changes to codeblocks, trailing spaces, indentation, part 2 Marcel Amirault2019-07-234-73/+80
|/
* Typo and fix Customer -> CustomAndrew Greenwood2019-07-201-3/+3
* Add libvirt Custom executor example•••reference https://gitlab.com/gitlab-org/gitlab-runner/issues/4257 Steve Azzopardi2019-07-192-0/+235
* Add LXD Custom executor example•••This example creates LXD containers for a specific job and runs the script inside of that container. After the job is done the container is removed. This tries to follow the same life cycle of the Docker executor reference https://gitlab.com/gitlab-org/gitlab-runner/issues/4257 Steve Azzopardi2019-07-183-0/+166
* Add custom executor documentationSteve Azzopardi2019-07-162-20/+438
* Update docs executor titles•••To be grammatically correct, `E` should be lower case. closes https://gitlab.com/gitlab-org/gitlab-runner/issues/4441 Steve Azzopardi2019-07-101-6/+6
* Docs: Update redirected links in runner docsMarcel Amirault2019-07-051-2/+2
* Trivial update to virtualbox.md - 'shutdown' is not the verb, barely the noun.Bishop Clark2019-07-051-3/+3
* Document limitation for Windows Docker target drive•••When a user specifies `builds_dir=F:\\builds` inside of `config.toml` file, and run the `docker-windows` executor the user would get an error like below: ``` Error response from daemon: The parameter is incorrect. ``` As explained in https://github.com/MicrosoftDocs/Virtualization-Documentation/issues/334 Docker volumes apart from `C:` are not supported. Steve Azzopardi2019-07-041-0/+11
* update doc to use correct Runner name•••The official name is GitLab Runner where the `r` is always uppercase. Steve Azzopardi2019-07-041-0/+5
* Enforce consistent prefix for bullet listsEvan Read2019-07-011-7/+7
* Enforce consistent prefix for numbered listsEvan Read2019-06-282-4/+4
* Update docs to fix markdown and square bracket useMarcel Amirault2019-06-271-6/+5
* Add docs for not supporting LCOW•••1. We do not support Linux Containers on Windows (LCOW) since it's an experimental feature from Docker. 1. One of the biggest headaches is volume management since you are running on Windows but then have Linux paths so we would require more volume parsing. 1. Supporting Kubernetes Windows nodes might be a better option in the long run https://gitlab.com/gitlab-org/gitlab-runner/issues/4014 Steve Azzopardi2019-06-251-0/+20
* Fix indentation for docsSteve Azzopardi2019-06-241-3/+3
* Merge branch 'cleanup' into 'master'•••Numerous typos were fixed. Some unused constants, variables and arguments were removed. See merge request gitlab-org/gitlab-runner!1258Tomasz Maczukin2019-06-051-1/+1
|\
| * Numerous typos were fixed. Some unused constants, variables and arguments wer...Alexander Kutelev2019-03-251-1/+1
* | Fix default cache volume docker-windows register•••When the user specifies `docker-windows` `/cache` is still used as a default value, which is never correct in any cache. The default cache volume for `docker-windows` needs to be `c:\\cache`. With this, there is only one limitation, the detection of `c:\\cache` when the user specified volumes on registration. With the following specification `c:\\cache:c:\\User\\ContainerAdministrator\\cache` we fail to add the `c:\\cache` to be used as a cache directory and the reason for this is because a simple string match is being done. For Linux, it's easier since we can split the string with `:` but for Windows `:` is part of the volume mounting. To properly support this scenario we require to expose the volume parser from Docker which is not ideal. A note in the documnetation was added about this. closes https://gitlab.com/gitlab-org/gitlab-runner/issues/3915 Steve Azzopardi2019-06-031-5/+5
* | Merge branch 'typo-fixes' into 'master'•••Fix Typos See merge request gitlab-org/gitlab-runner!1392Stan Hu2019-05-311-1/+1
|\ \
| * | Fix TyposYoginth2019-05-311-1/+1
* | | Document clear-docker-cache scriptEvan Read2019-05-311-2/+14
|/ /
* | Merge branch '4182-ask-for-docker-windows-in-registration' into 'master'•••Accept docker-windows as an option on register Closes #4182 See merge request gitlab-org/gitlab-runner!1388Tomasz Maczukin2019-05-301-5/+1
|\ \
| * | Update docs for registering a new docker-windows•••`docker-executor` is an option when the user registers a new executor, it's only the cache that is incorrect. Steve Azzopardi2019-05-301-5/+1
* | | changes per mr commentsDavid Schile2019-05-291-7/+7
* | | Merge branch 'master' into security-contextDavid Schile2019-05-293-23/+116
|\| |
| * | Minor markdown fixesEvan Read2019-05-291-10/+10
| * | Remove unused bash scripts•••These bash commands are not longer user by GitLab Runner. reference #4013 Steve Azzopardi2019-05-281-3/+1
| * | Limit `docker-windows` to WindowsKamil TrzciƄski2019-05-221-1/+2
| * | Merge branch 'docs/windows-docker-executor' into 'master'•••Add documentation for Windows Docker Executor See merge request gitlab-org/gitlab-runner!1345Evan Read2019-05-201-0/+79
| |\ \
| | * | Add documentation for Windows Docker ExecutorSteve Azzopardi2019-05-201-0/+79
| * | | docs: reuse previous cloneBen Bodenmiller2019-05-131-0/+1
| |/ /
| * | Merge branch 'docs/fix-typo' into 'master'•••Better explain the workflow in Docker executors doc Closes #4153 See merge request gitlab-org/gitlab-runner!1310Tomasz Maczukin2019-04-251-10/+11
| |\ \
| | * | Fix typo in Docker executors docAchilleas Pipinellis2019-04-151-10/+11
| * | | Apply suggestions to shell docs•••Applying wording changes from a review for gitlab-org/gitlab-runner!1209 Andrew Winata2019-04-231-0/+13
* | | | doc and pointers in structDavid Schile2019-04-191-1/+33
* | | | merged upstream masterDavid Schile2019-04-194-1/+18
|\| | |
| * | | Add more documentation for node tolerationsSteve Azzopardi2019-04-171-1/+6
| |/ /
| * | Add note about git-lfsEvan Read2019-04-093-0/+12
* | | Merge branch 'master' into security-contextDavid Schile2019-04-052-2/+9
|\| |
| * | Add custom clone path for the build•••When the user specifies `GIT_CLONE_PATH` environment variable inside of the `.gitlab-ci.yml` if the path is valid it is used to clone and build. `GIT_CLONE_PATH` takes precedence over the configured build dir and the default build dir. Closes #2211 Steve Azzopardi2019-04-031-0/+4
| * | Add new lines around lists for rendererEvan Read2019-04-022-2/+5
| |/
* | merged current masterDavid Schile2019-03-264-11/+34
|\|
| * Add information about Kaniko for Kubernetes executorAlexandr Burdiyan2019-03-181-0/+8
| * Apply suggestion of eread to docs/executors/kubernetes.mdAlexander Tanayno2019-03-061-1/+0