- Created nova_compute_packages for compute common packages
All operating systems:
- bridge-utils because os-vif uses iproute2
- postgres headers because OpenStack doesn't support it
- python libraries as they are already installed
- python-openstackclient as it's not used in run-time
Debian removals:
- qemu-kvm because it's just a legacy wrapper for qemu-system-x86
- qemu-utils recommended by qemu-system-x86
- qemu-system-{arm,mips,misc,ppc,sparc,x86} required by qemu-system
- qemu-{system,user,utils} required by qemu
- vlan as nova no longer uses vconfig
- python3-{guestfs,libvirt} as python3 support is not there yet
RedHat removals:
- libvirt-daemon-config-{nwfilter,qemu} required by libvirt-daemon-kvm
- qemu-img-ev required by qemu-kvm-ev
- iscsi-initiator-utils required by libvirt-daemon-driver-storage-iscsi
SUSE removals:
- open-iscsi required by libvirt-daemon-driver-storage-iscsi
- libvirt-daemon-driver-storage-core required by libvirt-daemon-driver-storage-*
- device-mapper required by libvirt-daemon-driver-storage-disk
- nfs-utils required by libvirt-daemon-driver-storage-core
- qemu-block-{curl,dmg,ssh} as that block storage driver is not used
Change-Id: If81939f95042460dd83234160f44426692189376
80 lines
1.6 KiB
YAML
80 lines
1.6 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.
|
|
|
|
## APT Cache options
|
|
cache_timeout: 600
|
|
|
|
libvirt_group: libvirt
|
|
libvirt_service_name: libvirtd
|
|
|
|
# Common apt packages
|
|
nova_distro_packages:
|
|
- iptables
|
|
|
|
nova_devel_distro_packages:
|
|
- git
|
|
- libsystemd-dev
|
|
- libxml2-dev
|
|
|
|
nova_service_distro_packages:
|
|
- python3-nova
|
|
- python3-memcache
|
|
- python3-systemd
|
|
|
|
nova_service_extra_distro_packages:
|
|
kvm:
|
|
- nova-compute-kvm
|
|
novnc:
|
|
- novnc
|
|
nova_api:
|
|
- uwsgi
|
|
- uwsgi-plugin-python3
|
|
spice:
|
|
- spice-html5
|
|
serialconsole:
|
|
- openstack-nova-serialproxy
|
|
|
|
nova_compute_packages:
|
|
- dosfstools
|
|
- genisoimage
|
|
- kpartx
|
|
- multipath-tools
|
|
- nfs-common
|
|
- open-iscsi
|
|
- python3-guestfs
|
|
- sysfsutils
|
|
|
|
nova_compute_barbican_distro_packages:
|
|
- cryptsetup
|
|
|
|
nova_compute_oslomsg_amqp1_distro_packages:
|
|
- libssl-dev
|
|
- libsasl2-modules
|
|
- sasl2-bin
|
|
|
|
nova_compute_kvm_distro_packages:
|
|
- libvirt-daemon
|
|
- libvirt-daemon-system
|
|
- python3-libvirt
|
|
- qemu
|
|
- qemu-block-extra
|
|
|
|
nova_compute_kvm_packages_to_symlink:
|
|
- python3-libvirt
|
|
- python3-guestfs
|
|
|
|
nova_compute_ksm_packages:
|
|
- ksmtuned
|