BigW Consortium Gitlab

index.html.haml 2.38 KB
Newer Older
1 2
- @no_container = true
= render "admin/dashboard/head"
3

4
%div{ class: container_class }
5 6 7

  %p.prepend-top-default
    %span
8 9 10 11
      To register a new Runner you should enter the following registration
      token.
      With this token the Runner will request a unique Runner token and use
      that for future communication.
12 13 14
      %br
      Registration token is
      %code{ id: 'runners-token' } #{current_application_settings.runners_registration_token}
15

16 17 18 19 20 21 22 23 24 25 26 27 28
  .bs-callout.clearfix
    .pull-left
      %p
        You can reset runners registration token by pressing a button below.
      %p
        = button_to reset_runners_token_admin_application_settings_path,
          method: :put, class: 'btn btn-default',
          data: { confirm: 'Are you sure you want to reset registration token?' } do
          = icon('refresh')
          Reset runners registration token

  .bs-callout
    %p
29 30
      A 'Runner' is a process which runs a build.
      You can setup as many Runners as you need.
31
      %br
32
      Runners can be placed on separate users, servers, even on your local machine.
33
      %br
34

35
    %div
36
      %span Each Runner can be in one of the following states:
37 38 39
      %ul
        %li
          %span.label.label-success shared
40
          \- Runner runs builds from all unassigned projects
41 42
        %li
          %span.label.label-info specific
43
          \- Runner runs builds from assigned projects
44
        %li
45
          %span.label.label-warning locked
46
          \- Runner cannot be assigned to other projects
47 48
        %li
          %span.label.label-danger paused
49
          \- Runner will not receive any new builds
50

51 52 53 54 55 56
  .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'
57

58 59
    .pull-right.light
      Runners with last contact less than a minute ago: #{@active_runners_cnt}
60

61
  %br
62

63 64 65 66 67 68 69 70 71 72 73 74
  .table-holder
    %table.table
      %thead
        %tr
          %th Type
          %th Runner token
          %th Description
          %th Projects
          %th Builds
          %th Tags
          %th Last contact
          %th
75

76 77
      - @runners.each do |runner|
        = render "admin/runners/runner", runner: runner
78
  = paginate @runners, theme: "gitlab"