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

80 lines
2.4 KiB
Text
Raw Normal View History

2016-06-22 15:30:34 +05:30
- @no_container = true
= render "admin/dashboard/head"
2015-12-23 02:04:40 +05:30
2016-08-24 12:49:21 +05:30
%div{ class: container_class }
2016-06-22 15:30:34 +05:30
%p.prepend-top-default
%span
2016-11-03 12:29:30 +05:30
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.
2016-06-22 15:30:34 +05:30
%br
Registration token is
2017-08-17 22:00:37 +05:30
%code#runners-token= current_application_settings.runners_registration_token
2015-09-25 12:07:36 +05:30
2016-06-22 15:30:34 +05:30
.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
2017-08-17 22:00:37 +05:30
= icon('spinner')
2016-06-22 15:30:34 +05:30
Reset runners registration token
.bs-callout
%p
2017-08-17 22:00:37 +05:30
A 'Runner' is a process which runs a job.
2016-11-03 12:29:30 +05:30
You can setup as many Runners as you need.
2016-06-22 15:30:34 +05:30
%br
2016-11-03 12:29:30 +05:30
Runners can be placed on separate users, servers, even on your local machine.
2016-06-22 15:30:34 +05:30
%br
2015-09-25 12:07:36 +05:30
2016-06-22 15:30:34 +05:30
%div
2016-11-03 12:29:30 +05:30
%span Each Runner can be in one of the following states:
2016-06-22 15:30:34 +05:30
%ul
%li
%span.label.label-success shared
2017-08-17 22:00:37 +05:30
\- Runner runs jobs from all unassigned projects
2016-06-22 15:30:34 +05:30
%li
%span.label.label-info specific
2017-08-17 22:00:37 +05:30
\- Runner runs jobs from assigned projects
2016-08-24 12:49:21 +05:30
%li
%span.label.label-warning locked
2016-11-03 12:29:30 +05:30
\- Runner cannot be assigned to other projects
2016-06-22 15:30:34 +05:30
%li
%span.label.label-danger paused
2017-08-17 22:00:37 +05:30
\- Runner will not receive any new jobs
2015-09-25 12:07:36 +05:30
2016-06-22 15:30:34 +05:30
.append-bottom-20.clearfix
.pull-left
= form_tag admin_runners_path, id: 'runners-search', class: 'form-inline', method: :get do
.form-group
= search_field_tag :search, params[:search], class: 'form-control', placeholder: 'Runner description or token', spellcheck: false
= submit_tag 'Search', class: 'btn'
2015-09-25 12:07:36 +05:30
2016-06-22 15:30:34 +05:30
.pull-right.light
2017-08-17 22:00:37 +05:30
Runners with last contact more than a minute ago: #{@active_runners_cnt}
2015-09-25 12:07:36 +05:30
2016-06-22 15:30:34 +05:30
%br
2015-09-25 12:07:36 +05:30
2016-06-22 15:30:34 +05:30
.table-holder
%table.table
%thead
%tr
%th Type
%th Runner token
%th Description
2017-08-17 22:00:37 +05:30
%th Version
2016-06-22 15:30:34 +05:30
%th Projects
2017-08-17 22:00:37 +05:30
%th Jobs
2016-06-22 15:30:34 +05:30
%th Tags
%th Last contact
%th
2015-09-25 12:07:36 +05:30
2016-06-22 15:30:34 +05:30
- @runners.each do |runner|
= render "admin/runners/runner", runner: runner
2016-11-03 12:29:30 +05:30
= paginate @runners, theme: "gitlab"