summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2016-04-04 15:39:08 +0200
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2016-04-04 15:39:08 +0200
commit3cf512362ef6e459c4a10f53818db799b9b1a248 (patch)
tree088cb8a86010f9fc4e399769cc0f325a6638d2f0
parent438e0ce848749944a3b006c0e3cf8249ed847df1 (diff)
downloadgitlab-ce-3cf512362ef6e459c4a10f53818db799b9b1a248.tar.gz
Add notice about GitLab Runner to requirements docs
This is related to !14589, and problems that may stem from running GitLab Runner on same machine user installed GitLab web app on.
-rw-r--r--doc/install/requirements.md10
1 files changed, 10 insertions, 0 deletions
diff --git a/doc/install/requirements.md b/doc/install/requirements.md
index 03cb08dd1f1..03433a72fa2 100644
--- a/doc/install/requirements.md
+++ b/doc/install/requirements.md
@@ -79,6 +79,16 @@ With less memory GitLab will give strange errors during the reconfigure run and
Notice: The 25 workers of Sidekiq will show up as separate processes in your process overview (such as top or htop) but they share the same RAM allocation since Sidekiq is a multithreaded application. Please see the section below about Unicorn workers for information about many you need of those.
+## Gitlab Runner
+
+We strongly advise against installing GitLab Runner on the same machine you plan to install GitLab on. Depending on how you decide to configure GitLab Runner and what tools you use to exercise your application in the CI environment, GitLab Runner can consume significant amount of available memory.
+
+Memory consumption calculations, that are available above, will not be valid if you decide to run GitLab Runner and GitLab web application on the same machine.
+
+It is also not safe to install everything on a single machine, because of the security reasons - especially when you plan to use shell executor with GitLab Runner.
+
+We recommend using a separate machine for each GitLab Runner, if you plan to use CI features.
+
## Unicorn Workers
It's possible to increase the amount of unicorn workers and this will usually help for to reduce the response time of the applications and increase the ability to handle parallel requests.