debian-mirror-gitlab/app/views/ci/admin/runners/index.html.haml

53 lines
1.5 KiB
Text
Raw Normal View History

2015-09-25 12:07:36 +05:30
%p.lead
%span To register new runner you should enter the following registration token. With this token the runner will request a unique runner token and use that for future communication.
%code #{GitlabCi::REGISTRATION_TOKEN}
.bs-callout
%p
A 'runner' is a process which runs a build.
You can setup as many runners as you need.
%br
Runners can be placed on separate users, servers, and even on your local machine.
%br
%div
%span Each runner can be in one of the following states:
%ul
%li
%span.label.label-success shared
\- run builds from all unassigned projects
%li
%span.label.label-info specific
\- run builds from assigned projects
%li
%span.label.label-danger paused
\- runner will not receive any new build
.append-bottom-20.clearfix
.pull-left
= form_tag ci_admin_runners_path, id: 'runners-search', class: 'form-inline', method: :get do
.form-group
2015-10-24 18:46:33 +05:30
= search_field_tag :search, params[:search], class: 'form-control', placeholder: 'Runner description or token', spellcheck: false
2015-09-25 12:07:36 +05:30
= submit_tag 'Search', class: 'btn'
.pull-right.light
Runners with last contact less than a minute ago: #{@active_runners_cnt}
%br
%table.table
%thead
%tr
%th Type
%th Runner token
%th Description
%th Projects
%th Builds
%th Tags
%th Last contact
%th
- @runners.each do |runner|
= render "ci/admin/runners/runner", runner: runner
= paginate @runners