2018-08-20 04:51:31 -04:00
|
|
|
- breadcrumb_title _('Runners')
|
2016-06-16 14:39:30 -04:00
|
|
|
- @no_container = true
|
2015-12-11 04:22:05 -05:00
|
|
|
|
2016-06-30 09:01:26 -04:00
|
|
|
%div{ class: container_class }
|
2016-06-16 14:39:30 -04:00
|
|
|
.bs-callout
|
|
|
|
%p
|
2018-08-20 04:51:31 -04:00
|
|
|
= (_"A 'Runner' is a process which runs a job. You can setup as many Runners as you need.")
|
2016-06-16 14:39:30 -04:00
|
|
|
%br
|
2018-08-20 04:51:31 -04:00
|
|
|
= _('Runners can be placed on separate users, servers, even on your local machine.')
|
2016-06-16 14:39:30 -04:00
|
|
|
%br
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2016-06-16 14:39:30 -04:00
|
|
|
%div
|
2018-08-20 04:51:31 -04:00
|
|
|
%span= _('Each Runner can be in one of the following states:')
|
2016-06-16 14:39:30 -04:00
|
|
|
%ul
|
|
|
|
%li
|
2018-04-13 15:36:22 -04:00
|
|
|
%span.badge.badge-success shared
|
2018-08-20 04:51:31 -04:00
|
|
|
\-
|
|
|
|
= _('Runner runs jobs from all unassigned projects')
|
2017-10-05 08:25:31 -04:00
|
|
|
%li
|
2018-05-08 11:49:30 -04:00
|
|
|
%span.badge.badge-success group
|
2018-08-20 04:51:31 -04:00
|
|
|
\-
|
|
|
|
= _('Runner runs jobs from all unassigned projects in its group')
|
2016-06-16 14:39:30 -04:00
|
|
|
%li
|
2018-04-13 15:37:55 -04:00
|
|
|
%span.badge.badge-info specific
|
2018-08-20 04:51:31 -04:00
|
|
|
\-
|
|
|
|
= _('Runner runs jobs from assigned projects')
|
2016-06-28 07:55:12 -04:00
|
|
|
%li
|
2018-04-13 15:34:22 -04:00
|
|
|
%span.badge.badge-warning locked
|
2018-08-20 04:51:31 -04:00
|
|
|
\-
|
|
|
|
= _('Runner cannot be assigned to other projects')
|
2016-06-16 14:39:30 -04:00
|
|
|
%li
|
2018-04-13 15:37:07 -04:00
|
|
|
%span.badge.badge-danger paused
|
2018-08-20 04:51:31 -04:00
|
|
|
\-
|
|
|
|
= _('Runner will not receive any new jobs')
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2017-05-22 09:51:36 -04:00
|
|
|
.bs-callout.clearfix
|
2018-04-09 13:36:21 -04:00
|
|
|
.float-left
|
2017-05-22 09:51:36 -04:00
|
|
|
%p
|
2018-08-20 04:51:31 -04:00
|
|
|
= _('You can reset runners registration token by pressing a button below.')
|
2017-05-22 09:51:36 -04:00
|
|
|
.prepend-top-10
|
2018-08-20 04:51:31 -04:00
|
|
|
= button_to _('Reset runners registration token'), reset_runners_token_admin_application_settings_path,
|
2018-05-10 15:22:56 -04:00
|
|
|
method: :put, class: 'btn btn-default',
|
2018-08-20 04:51:31 -04:00
|
|
|
data: { confirm: _('Are you sure you want to reset registration token?') }
|
2017-05-22 09:51:36 -04:00
|
|
|
|
2018-02-21 11:09:06 -05:00
|
|
|
= render partial: 'ci/runner/how_to_setup_shared_runner',
|
|
|
|
locals: { registration_token: Gitlab::CurrentSettings.runners_registration_token }
|
2017-05-22 09:51:36 -04:00
|
|
|
|
2018-08-13 04:26:33 -04:00
|
|
|
.bs-callout
|
|
|
|
%p
|
2018-09-12 11:31:25 -04:00
|
|
|
= _('Runners currently online: %{active_runners_count}') % { active_runners_count: @active_runners_count }
|
2018-08-13 04:26:33 -04:00
|
|
|
|
2018-07-03 13:28:09 -04:00
|
|
|
.row-content-block.second-block
|
|
|
|
= form_tag admin_runners_path, id: 'runners-search', method: :get, class: 'filter-form js-filter-form' do
|
|
|
|
.filtered-search-wrapper
|
|
|
|
.filtered-search-box
|
|
|
|
= dropdown_tag(custom_icon('icon_history'),
|
2018-08-20 04:51:31 -04:00
|
|
|
options: { wrapper_class: 'filtered-search-history-dropdown-wrapper',
|
|
|
|
toggle_class: 'filtered-search-history-dropdown-toggle-button',
|
|
|
|
dropdown_class: 'filtered-search-history-dropdown',
|
|
|
|
content_class: 'filtered-search-history-dropdown-content',
|
|
|
|
title: _('Recent searches') }) do
|
2018-07-03 13:28:09 -04:00
|
|
|
.js-filtered-search-history-dropdown{ data: { full_path: admin_runners_path } }
|
|
|
|
.filtered-search-box-input-container.droplab-dropdown
|
|
|
|
.scroll-container
|
|
|
|
%ul.tokens-container.list-unstyled
|
|
|
|
%li.input-token
|
2018-08-20 04:51:31 -04:00
|
|
|
%input.form-control.filtered-search{ { id: 'filtered-search-runners', placeholder: _('Search or filter results...') } }
|
2018-07-03 13:28:09 -04:00
|
|
|
#js-dropdown-hint.filtered-search-input-dropdown-menu.dropdown-menu.hint-dropdown
|
|
|
|
%ul{ data: { dropdown: true } }
|
|
|
|
%li.filter-dropdown-item{ data: { action: 'submit' } }
|
|
|
|
= button_tag class: %w[btn btn-link] do
|
2018-09-18 10:42:53 -04:00
|
|
|
= sprite_icon('search')
|
2018-07-03 13:28:09 -04:00
|
|
|
%span
|
2018-08-20 04:51:31 -04:00
|
|
|
= _('Press Enter or click to search')
|
2018-07-03 13:28:09 -04:00
|
|
|
%ul.filter-dropdown{ data: { dynamic: true, dropdown: true } }
|
|
|
|
%li.filter-dropdown-item
|
|
|
|
= button_tag class: %w[btn btn-link] do
|
|
|
|
-# Encapsulate static class name `{{icon}}` inside #{} to bypass
|
|
|
|
-# haml lint's ClassAttributeWithStaticValue
|
2018-09-18 10:42:53 -04:00
|
|
|
%svg
|
|
|
|
%use{ 'xlink:href': "#{'{{icon}}'}" }
|
2018-07-03 13:28:09 -04:00
|
|
|
%span.js-filter-hint
|
|
|
|
{{hint}}
|
|
|
|
%span.js-filter-tag.dropdown-light-content
|
|
|
|
{{tag}}
|
|
|
|
#js-dropdown-admin-runner-status.filtered-search-input-dropdown-menu.dropdown-menu
|
|
|
|
%ul{ data: { dropdown: true } }
|
|
|
|
- Ci::Runner::AVAILABLE_STATUSES.each do |status|
|
|
|
|
%li.filter-dropdown-item{ data: { value: status } }
|
|
|
|
= button_tag class: %w[btn btn-link] do
|
|
|
|
= status.titleize
|
|
|
|
= button_tag class: %w[clear-search hidden] do
|
|
|
|
= icon('times')
|
2018-07-12 12:15:03 -04:00
|
|
|
.filter-dropdown-container
|
|
|
|
= render 'sort_dropdown'
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2017-06-26 13:29:17 -04:00
|
|
|
- if @runners.any?
|
2018-07-17 03:59:45 -04:00
|
|
|
.runners-content.content-list
|
2017-06-19 08:28:11 -04:00
|
|
|
.table-holder
|
2018-07-17 03:59:45 -04:00
|
|
|
.gl-responsive-table-row.table-row-header{ role: 'row' }
|
2018-08-27 10:27:37 -04:00
|
|
|
- [_('Type'), _('Runner token'), _('Description'), _('Version'), _('IP Address'), _('Projects'), _('Jobs'), _('Tags'), _('Last contact')].each do |label|
|
|
|
|
.table-section.section-10{ role: 'rowheader' }= label
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2018-07-17 03:59:45 -04:00
|
|
|
- @runners.each do |runner|
|
2018-08-20 04:51:31 -04:00
|
|
|
= render 'admin/runners/runner', runner: runner
|
|
|
|
= paginate @runners, theme: 'gitlab'
|
2017-06-26 13:29:17 -04:00
|
|
|
- else
|
2018-08-20 04:51:31 -04:00
|
|
|
.nothing-here-block= _('No runners found')
|