@installdoc/ansible-gas-station
Version:
An Ansible playbook that provisions your network with software from GitHub Awesome lists, developed with disaster recovery in mind ⛽🔥🤤
59 lines (51 loc) • 1.7 kB
YAML
# @var https_repository_prefix: ""
# URL scheme to use for the DEB repository configuration/
# Change this to http://HTTPS/// if you are using AptCacherNG
https_repository_prefix: https://
# @example #
# https_repository_prefix: http://
# @end
# @var register_runner: bool
# Whether the role should attempt to register the runner. If set to true, ensure to provide the values for all the variables below.
# Note that when this value is set to true, the registration process will run even if it was run already
register_runner: false
# @example #
# register_runner: true
# @end
# @var gitlab_url: ""
# The URL to the Gitlab instance to associate the Runner with
gitlab_url: ""
# @example #
# gitlab_url: "https://gitlab.com"
# @end
# @var gitlab_registration_token: ""
# Registration token to use for registering the Runner with the above Gitlab instance
gitlab_registration_token: ""
# @example #
# gitlab_registration_token: "DCSoSDF_adfwkjnasKJua8j"
# @end
# @var gitlab_runner_executor: ""
# The role supports configuring docker Executor only. Ensure to provide value for the variable gitlab_runner_image
gitlab_runner_executor: "docker"
# @example #
# gitlab_runner_executor: "docker"
# @end
# @var gitlab_runner_image: ""
# Provide an image to use to configure the runner
gitlab_runner_image: ""
# @example #
# gitlab_runner_image: "alpine:latest"
# @end
# @var gitlab_runner_description: ""
# Description of this runner
gitlab_runner_description: ""
# @example #
# gitlab_runner_description: "Runner for frontend apps"
# @end
# @var gitlab_runner_tags: ""
# Comma separated list of tags for this runner
gitlab_runner_tags: ""
# @example #
# gitlab_runner_tags: "java,frontend"
# @end