summaryrefslogtreecommitdiff
path: root/app/views/admin/runners/index.html.haml
blob: 6793ce557c4eb1aba7226b06edce1d65b0b96274 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
- breadcrumb_title "Runners"
- @no_container = true
= render "admin/dashboard/head"

%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

    %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

  .bs-callout.clearfix
    .pull-left
      %p
        You can reset runners registration token by pressing a button below.
      .prepend-top-10
        = button_to _("Reset runners registration token"), reset_runners_token_admin_application_settings_path,
          method: :put, class: 'btn btn-default',
          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'

    .pull-right.light
      Runners with last contact more than a minute ago: #{@active_runners_cnt}

  %br

  - if @runners.any?
    .table-holder
      %table.table
        %thead
          %tr
            %th Type
            %th Runner token
            %th Description
            %th Version
            %th Projects
            %th Jobs
            %th Tags
            %th Last contact
            %th

        - @runners.each do |runner|
          = render "admin/runners/runner", runner: runner
    = paginate @runners, theme: "gitlab"
  - else
    .nothing-here-block No runners found