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

constants.js « runner_instructions « components « vue_shared « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c97e191b630e03facaf290295d5ea18706c19969 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { s__ } from '~/locale';

export const REGISTRATION_TOKEN_PLACEHOLDER = '$REGISTRATION_TOKEN';

export const INSTRUCTIONS_PLATFORMS_WITHOUT_ARCHITECTURES = {
  docker: {
    instructions: s__(
      'Runners|To install Runner in a container follow the instructions described in the GitLab documentation',
    ),
    link: 'https://docs.gitlab.com/runner/install/docker.html',
  },
  kubernetes: {
    instructions: s__(
      'Runners|To install Runner in Kubernetes follow the instructions described in the GitLab documentation.',
    ),
    link: 'https://docs.gitlab.com/runner/install/kubernetes.html',
  },
};