Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_specific_runners.html.haml « runners « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ec503cd8bef7ebde91a0852bd3286f6ab9ee7ac0 (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
%h3
  = _('Specific Runners')

.bs-callout.help-callout
  .append-bottom-10
    %h4= _('Set up a specific Runner automatically')

  %p
    - link_to_help_page = link_to(_('Learn more about Kubernetes'),
                                  help_page_path('user/project/clusters/index'),
                                  target: '_blank',
                                  rel: 'noopener noreferrer')

    = _('You can easily install a Runner on a Kubernetes cluster. %{link_to_help_page}').html_safe % { link_to_help_page: link_to_help_page }

  %ol
    %li
      = _('Click the button below to begin the install process by navigating to the Kubernetes page')
    %li
      = _('Select an existing Kubernetes cluster or create a new one')
    %li
      = _('From the Kubernetes cluster details view, install Runner from the applications list')

  = link_to _('Install Runner on Kubernetes'),
    project_clusters_path(@project),
    class: 'btn btn-info'
  %hr
  = render partial: 'ci/runner/how_to_setup_runner',
           locals: { registration_token: @project.runners_token,
                     type: 'specific',
                     reset_token_url: reset_registration_token_namespace_project_settings_ci_cd_path }

- if @project_runners.any?
  %h4.underlined-title Runners activated for this project
  %ul.bordered-list.activated-specific-runners
    = render partial: 'projects/runners/runner', collection: @project_runners, as: :runner

- if @assignable_runners.any?
  %h4.underlined-title Available specific runners
  %ul.bordered-list.available-specific-runners
    = render partial: 'projects/runners/runner', collection: @assignable_runners, as: :runner
  = paginate @assignable_runners, theme: "gitlab", :params => { :anchor => '#js-runners-settings' }