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

139 lines
6.5 KiB
Text
Raw Normal View History

2018-12-05 23:21:45 +05:30
- breadcrumb_title _('Runners')
2020-07-28 23:09:34 +05:30
- page_title _('Runners')
2015-12-23 02:04:40 +05:30
2019-12-04 20:38:33 +05:30
.row
.col-sm-6
.bs-callout
%p
2021-06-08 01:23:25 +05:30
= _("Runners are processes that pick up and execute CI/CD jobs for GitLab.")
2019-12-04 20:38:33 +05:30
%br
2021-03-08 18:12:59 +05:30
= _('You can register runners as separate users, on separate servers, and on your local machine. Register as many runners as you want.')
2019-12-04 20:38:33 +05:30
%br
2015-09-25 12:07:36 +05:30
2019-12-04 20:38:33 +05:30
%div
2021-03-08 18:12:59 +05:30
%span= _('Runners can be:')
2019-12-04 20:38:33 +05:30
%ul
%li
2021-03-08 18:12:59 +05:30
%span.badge.badge-pill.gl-badge.sm.badge-success shared
2019-12-04 20:38:33 +05:30
\-
2021-03-08 18:12:59 +05:30
= _('Runs jobs from all unassigned projects.')
2019-12-04 20:38:33 +05:30
%li
2021-03-08 18:12:59 +05:30
%span.badge.badge-pill.gl-badge.sm.badge-success group
2019-12-04 20:38:33 +05:30
\-
2021-03-08 18:12:59 +05:30
= _('Runs jobs from all unassigned projects in its group.')
2019-12-04 20:38:33 +05:30
%li
2021-03-08 18:12:59 +05:30
%span.badge.badge-pill.gl-badge.sm.badge-info specific
2019-12-04 20:38:33 +05:30
\-
2021-03-08 18:12:59 +05:30
= _('Runs jobs from assigned projects.')
2019-12-04 20:38:33 +05:30
%li
2021-03-08 18:12:59 +05:30
%span.badge.badge-pill.gl-badge.sm.badge-warning locked
2019-12-04 20:38:33 +05:30
\-
2021-03-08 18:12:59 +05:30
= _('Cannot be assigned to other projects.')
2019-12-04 20:38:33 +05:30
%li
2021-03-08 18:12:59 +05:30
%span.badge.badge-pill.gl-badge.sm.badge-danger paused
2019-12-04 20:38:33 +05:30
\-
2021-03-08 18:12:59 +05:30
= _('Not available to run jobs.')
2015-09-25 12:07:36 +05:30
2019-12-04 20:38:33 +05:30
.col-sm-6
.bs-callout
= render partial: 'ci/runner/how_to_setup_runner',
locals: { registration_token: Gitlab::CurrentSettings.runners_registration_token,
type: 'shared',
2021-03-11 19:13:27 +05:30
reset_token_url: reset_registration_token_admin_application_settings_path,
project_path: '',
group_path: '' }
2017-09-10 17:25:29 +05:30
2019-12-04 20:38:33 +05:30
.row
.col-sm-9
= form_tag admin_runners_path, id: 'runners-search', method: :get, class: 'filter-form js-filter-form' do
2019-12-21 20:55:43 +05:30
.filtered-search-wrapper.d-flex
2019-12-04 20:38:33 +05:30
.filtered-search-box
2019-12-21 20:55:43 +05:30
= dropdown_tag(_('Recent searches'),
2019-12-04 20:38:33 +05:30
options: { wrapper_class: 'filtered-search-history-dropdown-wrapper',
2021-04-29 21:17:54 +05:30
toggle_class: 'gl-button btn btn-default filtered-search-history-dropdown-toggle-button',
2019-12-04 20:38:33 +05:30
dropdown_class: 'filtered-search-history-dropdown',
2019-12-21 20:55:43 +05:30
content_class: 'filtered-search-history-dropdown-content' }) do
2019-12-04 20:38:33 +05:30
.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
%input.form-control.filtered-search{ search_filter_input_options('runners') }
#js-dropdown-hint.filtered-search-input-dropdown-menu.dropdown-menu.hint-dropdown
%ul.filter-dropdown{ data: { dynamic: true, dropdown: true } }
2020-03-13 15:44:24 +05:30
%li.filter-dropdown-item{ data: {hint: "#{'{{hint}}'}", tag: "#{'{{tag}}'}", action: "#{'{{hint === \'search\' ? \'submit\' : \'\' }}'}" } }
2021-01-03 14:25:43 +05:30
= button_tag class: %w[gl-button btn btn-link] do
2019-12-04 20:38:33 +05:30
-# Encapsulate static class name `{{icon}}` inside #{} to bypass
-# haml lint's ClassAttributeWithStaticValue
%svg
%use{ 'xlink:href': "#{'{{icon}}'}" }
%span.js-filter-hint
2020-03-13 15:44:24 +05:30
{{formattedKey}}
#js-dropdown-operator.filtered-search-input-dropdown-menu.dropdown-menu
%ul.filter-dropdown{ data: { dropdown: true, dynamic: true } }
%li.filter-dropdown-item{ data: { value: "{{ title }}" } }
2021-04-29 21:17:54 +05:30
%button.gl-button.btn.btn-link{ type: 'button' }
2020-03-13 15:44:24 +05:30
{{ title }}
%span.btn-helptext
{{ help }}
2019-12-04 20:38:33 +05:30
#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 } }
2021-01-03 14:25:43 +05:30
= button_tag class: %w[gl-button btn btn-link] do
2019-12-04 20:38:33 +05:30
= status.titleize
2015-09-25 12:07:36 +05:30
2019-07-07 11:18:12 +05:30
#js-dropdown-admin-runner-type.filtered-search-input-dropdown-menu.dropdown-menu
%ul{ data: { dropdown: true } }
- Ci::Runner::AVAILABLE_TYPES.each do |runner_type|
%li.filter-dropdown-item{ data: { value: runner_type } }
2021-01-03 14:25:43 +05:30
= button_tag class: %w[gl-button btn btn-link] do
2019-07-07 11:18:12 +05:30
= runner_type.titleize
2019-12-04 20:38:33 +05:30
#js-dropdown-admin-runner-type.filtered-search-input-dropdown-menu.dropdown-menu
%ul{ data: { dropdown: true } }
- Ci::Runner::AVAILABLE_TYPES.each do |runner_type|
%li.filter-dropdown-item{ data: { value: runner_type } }
2021-01-03 14:25:43 +05:30
= button_tag class: %w[gl-button btn btn-link] do
2019-12-04 20:38:33 +05:30
= runner_type.titleize
#js-dropdown-runner-tag.filtered-search-input-dropdown-menu.dropdown-menu
%ul{ data: { dropdown: true } }
%li.filter-dropdown-item{ data: { value: 'none' } }
2021-04-29 21:17:54 +05:30
%button.gl-button.btn.btn-link
2019-12-04 20:38:33 +05:30
= _('No Tag')
%li.divider.droplab-item-ignore
%ul.filter-dropdown{ data: { dynamic: true, dropdown: true } }
%li.filter-dropdown-item
2021-04-29 21:17:54 +05:30
%button.gl-button.btn.btn-link.js-data-value
2019-12-04 20:38:33 +05:30
%span.dropdown-light-content
{{name}}
2019-07-07 11:18:12 +05:30
2019-12-04 20:38:33 +05:30
= button_tag class: %w[clear-search hidden] do
2020-11-24 15:15:51 +05:30
= sprite_icon('close', size: 16, css_class: 'clear-search-icon')
2019-12-04 20:38:33 +05:30
.filter-dropdown-container
= render 'sort_dropdown'
2018-12-05 23:21:45 +05:30
2019-12-04 20:38:33 +05:30
.col-sm-3.text-right-lg
= _('Runners currently online: %{active_runners_count}') % { active_runners_count: @active_runners_count }
2015-09-25 12:07:36 +05:30
2019-12-04 20:38:33 +05:30
- if @runners.any?
2021-04-29 21:17:54 +05:30
.content-list{ data: { testid: 'runners-table' } }
2019-12-04 20:38:33 +05:30
.table-holder
.gl-responsive-table-row.table-row-header{ role: 'row' }
2020-01-01 13:55:28 +05:30
.table-section.section-10{ role: 'rowheader' }= _('Type/State')
2021-04-29 21:17:54 +05:30
.table-section.section-30{ role: 'rowheader' }= s_('Runners|Runner')
2019-12-04 20:38:33 +05:30
.table-section.section-10{ role: 'rowheader' }= _('Version')
.table-section.section-10{ role: 'rowheader' }= _('IP Address')
.table-section.section-5{ role: 'rowheader' }= _('Projects')
.table-section.section-5{ role: 'rowheader' }= _('Jobs')
.table-section.section-10{ role: 'rowheader' }= _('Tags')
.table-section.section-10{ role: 'rowheader' }= _('Last contact')
.table-section.section-10{ role: 'rowheader' }
2015-09-25 12:07:36 +05:30
2019-12-04 20:38:33 +05:30
- @runners.each do |runner|
= render 'admin/runners/runner', runner: runner
= paginate @runners, theme: 'gitlab'
- else
.nothing-here-block= _('No runners found')