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

runner_type_help.vue « components « runner « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 927deb290a415f2b5ef66199af81aaa99cc979da (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
<script>
import { GlBadge } from '@gitlab/ui';
import { INSTANCE_TYPE, GROUP_TYPE, PROJECT_TYPE } from '../constants';
import RunnerTypeBadge from './runner_type_badge.vue';

export default {
  components: {
    GlBadge,
    RunnerTypeBadge,
  },
  runnerTypes: {
    INSTANCE_TYPE,
    GROUP_TYPE,
    PROJECT_TYPE,
  },
};
</script>

<template>
  <div class="bs-callout">
    <p>{{ __('Runners are processes that pick up and execute CI/CD jobs for GitLab.') }}</p>
    <p>
      {{
        __(
          'You can register runners as separate users, on separate servers, and on your local machine. Register as many runners as you want.',
        )
      }}
    </p>

    <div>
      <span> {{ __('Runners can be:') }}</span>
      <ul>
        <li>
          <runner-type-badge :type="$options.runnerTypes.INSTANCE_TYPE" size="sm" />
          - {{ __('Runs jobs from all unassigned projects.') }}
        </li>
        <li>
          <runner-type-badge :type="$options.runnerTypes.GROUP_TYPE" size="sm" />
          - {{ __('Runs jobs from all unassigned projects in its group.') }}
        </li>
        <li>
          <runner-type-badge :type="$options.runnerTypes.PROJECT_TYPE" size="sm" />
          - {{ __('Runs jobs from assigned projects.') }}
        </li>
        <li>
          <gl-badge variant="warning" size="sm">
            {{ __('locked') }}
          </gl-badge>
          - {{ __('Cannot be assigned to other projects.') }}
        </li>
        <li>
          <gl-badge variant="danger" size="sm">
            {{ __('paused') }}
          </gl-badge>
          - {{ __('Not available to run jobs.') }}
        </li>
      </ul>
    </div>
  </div>
</template>