
Sync the versions with kolla-ansible Depends-On: https://review.opendev.org/c/openstack/kayobe/+/883744 Change-Id: I744d64e1e69021f93497fcf127a6abd315f04669
34 lines
752 B
YAML
34 lines
752 B
YAML
---
|
|
# Apt cache TTL in seconds.
|
|
apt_cache_valid_time: 3600
|
|
|
|
enable_multipathd: false
|
|
|
|
# Whether the nova_libvirt container is enabled.
|
|
enable_nova_libvirt_container: false
|
|
|
|
ubuntu_pkg_install:
|
|
- git
|
|
- iputils-ping
|
|
- "{% if enable_multipathd | bool %}sg3-utils-udev{% endif %}"
|
|
- tzdata
|
|
|
|
openeuler_pkg_install:
|
|
- python3-docker
|
|
|
|
redhat_pkg_install:
|
|
- git
|
|
- iputils
|
|
- sudo
|
|
|
|
ubuntu_pkg_removals:
|
|
- lxd
|
|
- lxc
|
|
- "{% if enable_nova_libvirt_container | bool %}libvirt-bin{% endif %}"
|
|
- open-iscsi
|
|
|
|
redhat_pkg_removals:
|
|
- "{% if enable_nova_libvirt_container | bool %}libvirt{% endif %}"
|
|
- "{% if enable_nova_libvirt_container | bool %}libvirt-daemon{% endif %}"
|
|
- "{% if enable_nova_libvirt_container | bool %}iscsi-initiator-utils{% endif %}"
|