summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_shared/components/runner_instructions/constants.js
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',
  },
};