diff options
author | Shinya Maeda <gitlab.shinyamaeda@gmail.com> | 2017-05-22 22:51:36 +0900 |
---|---|---|
committer | Shinya Maeda <shinya@gitlab.com> | 2017-07-20 15:04:52 +0900 |
commit | 3f66d3bd63a187abd90f2e640d8f50e8d4d7422c (patch) | |
tree | 4de4b0472fc0ce151dada40ada4ab0a4f536f735 /app/views/ci | |
parent | 1540cc434b66e32f723fff5de3fbc2f7e9480e0b (diff) | |
download | gitlab-ce-3f66d3bd63a187abd90f2e640d8f50e8d4d7422c.tar.gz |
Add coordinator url to admin area runner page
Use partial and shring same UI
Swap two. Like the project runner section.
Fix tests
Diffstat (limited to 'app/views/ci')
-rw-r--r-- | app/views/ci/runner/_how_to_setup_runner.html.haml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/app/views/ci/runner/_how_to_setup_runner.html.haml b/app/views/ci/runner/_how_to_setup_runner.html.haml new file mode 100644 index 00000000000..04376ddb18e --- /dev/null +++ b/app/views/ci/runner/_how_to_setup_runner.html.haml @@ -0,0 +1,15 @@ +.bs-callout.help-callout + %h4 How to setup a #{type} Runner for a new project + + %ol + %li + Install a Runner compatible with GitLab CI + (checkout the #{link_to 'GitLab Runner section', 'https://about.gitlab.com/gitlab-ci/#gitlab-runner', target: '_blank'} for information on how to install it). + %li + Specify the following URL during the Runner setup: + %code= root_url(only_path: false) + %li + Use the following registration token during setup: + %code= registration_token + %li + Start the Runner! |