b467764f15
There is no good reason why we need to install devel packages in the containers or the host. If devel packages are required to build pip packages then the individual roles should pull them in instead. Dropping these packages makes the containers slightly smaller and also drops the time it takes to bootstrap them. Change-Id: I813b4800dd3ce22f5f5d7d7cd0ac4fce5661b1e3
57 lines
1.4 KiB
YAML
57 lines
1.4 KiB
YAML
---
|
|
# Copyright 2016, 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.
|
|
|
|
_lxc_hosts_container_image_url: "https://github.com/CentOS/sig-cloud-instance-images/raw/CentOS-7/docker/centos-7-docker.tar.xz"
|
|
|
|
_lxc_cache_map:
|
|
distro: centos
|
|
arch: "{{ lxc_architecture_mapping.get( ansible_architecture ) }}"
|
|
release: 7
|
|
copy_from_host:
|
|
- /etc/default/locale
|
|
- /etc/environment
|
|
- /etc/localtime
|
|
- /etc/locale.conf
|
|
- /etc/protocols
|
|
- /etc/pki/rpm-gpg/
|
|
- /etc/yum/pluginconf.d/fastestmirror.conf
|
|
- /etc/yum.repos.d/
|
|
|
|
_lxc_cache_prep_template: "prep-scripts/centos_7_prep.sh.j2"
|
|
|
|
_lxc_cache_distro_packages:
|
|
- ca-certificates
|
|
- cronie
|
|
- epel-release
|
|
- gcc
|
|
- iproute
|
|
- iputils
|
|
- openssh-server
|
|
- openssl
|
|
- policycoreutils
|
|
- python2
|
|
- rsync
|
|
- setup
|
|
- sudo
|
|
- systemd
|
|
- systemd-sysv
|
|
- systemd-networkd
|
|
- tar
|
|
- wget
|
|
- which
|
|
- yum-plugin-priorities
|
|
- yum-plugin-rpm-warm-cache
|
|
- yum-utils
|