-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathargument_specs.yml
49 lines (49 loc) · 2.06 KB
/
argument_specs.yml
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
---
argument_specs:
main:
short_description: 'GitLab Runner'
description:
- 'An Ansible role to install L(GitLab Runner,https://docs.gitlab.com/runner/).'
author: 'Melekhin Anton'
options:
gitlab_runner_package_version:
type: 'str'
description:
- 'The version of the GitLab Runner package.'
- 'By default, GitLab Runner is installed with the latest available version.'
gitlab_runner_repository_mirror_url:
type: 'str'
description:
- 'The GitLab Runner repository mirror.'
- 'By default, the role uses the official GitLab Runner repository mirror.'
default: 'https://packages.gitlab.com/runner/gitlab-runner'
gitlab_runner_repository_gpgkey_url:
type: 'str'
description:
- 'Specify where to fetch the GitLab Runner GPG key file from.'
- 'By default, the role uses the official GitLab Runner GPG key.'
default: '{{ __gitlab_runner_repository_gpgkey_url }}'
gitlab_runner_repository:
type: 'str'
description: 'Specify the GitLab Runner repository.'
default: '{{ __gitlab_runner_repository }}'
gitlab_runner_binary_version:
type: 'str'
description: 'The version of the GitLab Runner binary.'
default: '17.9.0'
gitlab_runner_binary_name:
type: 'str'
description: 'The GitLab Runner binary name.'
default: 'gitlab-runner-{{ __gitlab_runner_binary_os }}-{{ __gitlab_runner_binary_architecture }}'
gitlab_runner_binary_download_url:
type: 'str'
description: 'URL to download the GitLab Runner binary.'
default: 'https://gitlab-runner-downloads.s3.amazonaws.com/v{{ gitlab_runner_binary_version }}/binaries'
gitlab_runner_binary_download_path:
type: 'path'
description: 'Local path to download the binary.'
default: '/tmp'
gitlab_runner_binary_install_path:
type: 'path'
description: 'GitLab Runner installation folder.'
default: '{{ __gitlab_runner_binary_install_path }}'