Add dependencies to Ubuntu Builders
[releng.git] / utils / build-server-ansible / vars / defaults.yml
1 #############################################################################
2 # Copyright (c) 2016 The Linux Foundation and others.
3 # All rights reserved. This program and the accompanying materials
4 # are made available under the terms of the Apache License, Version 2.0
5 # which accompanies this distribution, and is available at
6 # http://www.apache.org/licenses/LICENSE-2.0
7 #############################################################################
8 ---
9 docker_package: "docker-ce"
10 docker_package_state: present
11
12 # Used only for Debian/Ubuntu. Switch 'stable' to 'edge' if needed.
13 docker_apt_release_channel: stable
14 # yamllint disable rule:line-length
15 docker_apt_repository: "deb https://download.docker.com/linux/{{ ansible_distribution|lower }} {{ ansible_distribution_release }} {{ docker_apt_release_channel }}"
16 # yamllint enable rule:line-length
17
18 # Used only for RedHat/CentOS.
19 # yamllint disable rule:line-length
20 docker_yum_repo_url: https://download.docker.com/linux/centos/docker-ce.repo
21 # yamllint enable rule:line-length
22 docker_yum_repo_enable_edge: 0
23 docker_yum_repo_enable_test: 0
24
25 manifest_tool_version: 'v0.7.0'
26 manifest_tool_url: 'https://github.com/estesp/manifest-tool/releases/download'
27 manifest_tool_bin_dir: '/usr/local/bin'