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

113 lines
4.9 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.badge.badge-success shared
\- Runner runs jobs from all unassigned projects
%li
2018-05-08 15:49:30 +00:00
%span.badge.badge-success group
\- Runner runs jobs from all unassigned projects in its group
%li
2018-04-13 19:37:55 +00:00
%span.badge.badge-info specific
\- Runner runs jobs from assigned projects
%li
%span.badge.badge-warning locked
\- Runner cannot be assigned to other projects
%li
2018-04-13 19:37:07 +00:00
%span.badge.badge-danger paused
\- Runner will not receive any new jobs
2015-08-26 01:42:46 +00:00
.bs-callout.clearfix
2018-04-09 17:36:21 +00:00
.float-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,
2018-05-10 19:22:56 +00:00
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_shared_runner',
locals: { registration_token: Gitlab::CurrentSettings.runners_registration_token }
.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'),
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
.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{ { id: 'filtered-search-runners', placeholder: 'Search or filter results...' } }
#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
= icon('search')
%span
Press Enter or click to search
%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
%i.fa{ class: "#{'{{icon}}'}" }
%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')
.filter-dropdown-container
= render 'sort_dropdown'
.clearfix
.float-right.light
.prepend-top-10
Runners currently online: #{@active_runners_cnt}
2015-08-26 01:42:46 +00:00
%br
2015-08-26 01:42:46 +00:00
- if @runners.any?
.runners-content.content-list
2017-06-19 12:28:11 +00:00
.table-holder
.gl-responsive-table-row.table-row-header{ role: 'row' }
.table-section.section-10{ role: 'rowheader' } Type
.table-section.section-10{ role: 'rowheader' } Runner token
.table-section.section-10{ role: 'rowheader' } Description
.table-section.section-10{ role: 'rowheader' } Version
.table-section.section-10{ role: 'rowheader' } IP Address
.table-section.section-10{ role: 'rowheader' } Projects
.table-section.section-10{ role: 'rowheader' } Jobs
.table-section.section-10{ role: 'rowheader' } Tags
.table-section.section-10{ role: 'rowheader' } Last contact
2015-08-26 01:42:46 +00:00
- @runners.each do |runner|
= render "admin/runners/runner", runner: runner
2017-06-19 12:28:11 +00:00
= paginate @runners, theme: "gitlab"
- else
.nothing-here-block No runners found