summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_shared/components/runner_instructions/constants.js
blob: facace0d809059a802b09a3436446eb3edf8fe07 (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 PLATFORMS_WITHOUT_ARCHITECTURES = ['docker', 'kubernetes'];

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',
  },
};