gitlab-org--gitlab-foss/app/views/admin/runners/index.html.haml

74 lines
2.4 KiB
Plaintext
Raw Normal View History

2017-08-17 14:53:50 +00:00
- breadcrumb_title "Runners"
- @no_container = true
2016-06-30 13:01:26 +00:00
%div{ class: container_class }
.bs-callout
%p
A 'Runner' is a process which runs a job.
You can setup as many Runners as you need.
%br
Runners can be placed on separate users, servers, even on your local machine.
%br
2015-08-26 01:42:46 +00:00
%div
%span Each Runner can be in one of the following states:
%ul
%li
%span.label.label-success shared
\- Runner runs jobs from all unassigned projects
%li
%span.label.label-info specific
\- Runner runs jobs from assigned projects
%li
%span.label.label-warning locked
\- Runner cannot be assigned to other projects
%li
%span.label.label-danger paused
\- Runner will not receive any new jobs
2015-08-26 01:42:46 +00:00
.bs-callout.clearfix
.pull-left
%p
You can reset runners registration token by pressing a button below.
.prepend-top-10
2017-07-17 12:46:00 +00:00
= button_to _("Reset runners registration token"), reset_runners_token_admin_application_settings_path,
method: :put, class: 'btn btn-default',
2017-07-17 12:46:00 +00:00
data: { confirm: _("Are you sure you want to reset registration token?") }
= render partial: 'ci/runner/how_to_setup_runner',
locals: { registration_token: current_application_settings.runners_registration_token,
type: 'shared' }
.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-08-26 01:42:46 +00:00
.pull-right.light
2017-02-17 16:51:01 +00:00
Runners with last contact more than a minute ago: #{@active_runners_cnt}
2015-08-26 01:42:46 +00:00
%br
2015-08-26 01:42:46 +00:00
- if @runners.any?
.table-holder
%table.table
%thead
%tr
%th Type
%th Runner token
%th Description
%th Version
%th Projects
%th Jobs
%th Tags
2017-10-03 15:08:29 +00:00
%th= link_to 'Last contact', admin_runners_path(params.slice(:search).merge(sort: 'contacted_asc'))
%th
2015-08-26 01:42:46 +00:00
- @runners.each do |runner|
= render "admin/runners/runner", runner: runner
= paginate @runners, theme: "gitlab"
- else
.nothing-here-block No runners found