c6e5c9a74e
This PR ensures that the environment is always pointing at a frozen repository of PIP packages which consists of prebuilt wheels. A script was created to allow for packages and apps to be easily updated. Resolves: * https://github.com/rcbops/ansible-lxc-rpc/issues/113 * https://github.com/rcbops/ansible-lxc-rpc/issues/120 Begins resolving: * https://github.com/rcbops/ansible-lxc-rpc/issues/31 * https://github.com/rcbops/ansible-lxc-rpc/issues/53 set all project group_vars to a given sha added retry added tempest
79 lines
2.4 KiB
YAML
79 lines
2.4 KiB
YAML
---
|
|
# Copyright 2014, Rackspace US, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
## URL for the frozen rpc repo
|
|
rpc_repo_url: "http://rpc-slushee.rackspace.com"
|
|
|
|
## GPG Keys
|
|
gpg_keys:
|
|
- { key_name: 'mariadb', keyserver: 'hkp://keyserver.ubuntu.com:80', hash_id: '0xcbcb082a1bb943db' }
|
|
|
|
apt_common_repos:
|
|
- { repo: "deb http://mirror.jmu.edu/pub/mariadb/repo/5.5/ubuntu {{ ansible_distribution_release }} main", state: "present" }
|
|
|
|
# apt_container_keys:
|
|
# - { url: "{{ rpc_repo_url }}/repo.gpg", state: "present" }
|
|
|
|
## Repositories. the name: key value is only used in the ``containers-setup.yml`` play
|
|
# Set the name to whatever the domain name is of the ``rpc_repo_url`` value with any
|
|
# Hyphens and periods replaced with underlines. This will ensure that when ansible
|
|
# runs into the ``apt_common_repos`` option is set correctly.
|
|
# apt_common_repos:
|
|
# - { repo: "deb [arch=amd64] {{ rpc_repo_url }} rpc-LA main", state: "present", name: "rpc_slushee_rackspace_com" }
|
|
# - { repo: "deb [arch=amd64] {{ rpc_repo_url }} LA main", state: "present", name: "rpc_slushee_rackspace_com" }
|
|
# - { repo: "deb [arch=amd64] {{ rpc_repo_url }} universe-LA universe", state: "present", name: "rpc_slushee_rackspace_com" }
|
|
|
|
## Python pip
|
|
get_pip_url: "{{ rpc_repo_url }}/downloads/get-pip.py"
|
|
get_pip_sha256sum: "d43dc33a5670d69dd14a9be1f2b2fa27ebf124ec1b212a47425331040f742a9b"
|
|
|
|
pip_common_packages:
|
|
- wheel
|
|
- setuptools
|
|
- pip
|
|
|
|
|
|
## Base Packages
|
|
apt_common_packages:
|
|
- aptitude
|
|
- vlan
|
|
- python-software-properties
|
|
- python-dev
|
|
- build-essential
|
|
- git-core
|
|
- rsyslog
|
|
- lvm2
|
|
- dmeventd
|
|
- libkmod-dev
|
|
- libkmod2
|
|
- libssl-dev
|
|
- bridge-utils
|
|
- cgroup-lite
|
|
- sqlite3
|
|
- iptables
|
|
- sshpass
|
|
- libffi-dev
|
|
- libxml2-dev
|
|
- libxslt1-dev
|
|
- mariadb-client
|
|
- libmariadbclient-dev
|
|
|
|
# Util packages that are installed when repos are put in place
|
|
common_util_packages:
|
|
- curl
|
|
- wget
|
|
- time
|
|
- rsync
|