2015-08-25 21:42:46 -04:00
|
|
|
%p.lead
|
2015-12-10 07:06:44 -05:00
|
|
|
%span
|
|
|
|
To register a 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.
|
|
|
|
Registration token is
|
2015-12-11 08:43:44 -05:00
|
|
|
%code{ id: 'runners-token' } #{current_application_settings.ensure_runners_registration_token}
|
2015-12-11 04:22:05 -05:00
|
|
|
|
|
|
|
.bs-callout.clearfix
|
|
|
|
.pull-left
|
|
|
|
%p
|
|
|
|
You can reset runners registration token by pressing a button below.
|
|
|
|
%p
|
|
|
|
= button_to reset_runners_token_admin_application_settings_path,
|
|
|
|
method: :put, class: 'btn btn-default',
|
|
|
|
data: { confirm: 'Are you sure you want to reset registration token?' } do
|
|
|
|
= icon('refresh')
|
|
|
|
Reset runners registration token
|
2015-08-25 21:42:46 -04:00
|
|
|
|
|
|
|
.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
|
2015-10-24 06:37:44 -04:00
|
|
|
\- runner will not receive any new builds
|
2015-08-25 21:42:46 -04:00
|
|
|
|
|
|
|
.append-bottom-20.clearfix
|
|
|
|
.pull-left
|
2015-12-04 06:55:23 -05:00
|
|
|
= form_tag admin_runners_path, id: 'runners-search', class: 'form-inline', method: :get do
|
2015-08-25 21:42:46 -04:00
|
|
|
.form-group
|
2015-10-09 12:08:37 -04:00
|
|
|
= search_field_tag :search, params[:search], class: 'form-control', placeholder: 'Runner description or token', spellcheck: false
|
2015-08-25 21:42:46 -04:00
|
|
|
= submit_tag 'Search', class: 'btn'
|
|
|
|
|
|
|
|
.pull-right.light
|
|
|
|
Runners with last contact less than a minute ago: #{@active_runners_cnt}
|
|
|
|
|
|
|
|
%br
|
|
|
|
|
2015-10-19 05:19:45 -04:00
|
|
|
.table-holder
|
|
|
|
%table.table
|
|
|
|
%thead
|
|
|
|
%tr
|
|
|
|
%th Type
|
|
|
|
%th Runner token
|
|
|
|
%th Description
|
|
|
|
%th Projects
|
|
|
|
%th Builds
|
|
|
|
%th Tags
|
|
|
|
%th Last contact
|
|
|
|
%th
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2015-10-19 05:19:45 -04:00
|
|
|
- @runners.each do |runner|
|
2015-12-04 06:55:23 -05:00
|
|
|
= render "admin/runners/runner", runner: runner
|
2015-08-25 21:42:46 -04:00
|
|
|
= paginate @runners
|