tripleo-common/container-images/tcib/base/os/nova-base/nova-compute/nova-compute.yaml

37 lines
1.1 KiB
YAML

tcib_actions:
- run: if [ "$(uname -m)" == "x86_64" ]; then dnf -y install {{ tcib_packages['x86_64'] | join(' ') }}; fi
- run: if ['{{ tcib_release }}' == '8' ]; then dnf -y install {{ tcib_packages['el8'] | join(' ') }}; fi
- run: dnf -y install {{ tcib_packages['common'] | join(' ') }} && dnf clean all && rm -rf /var/cache/dnf
# this need to happen after installing nova-compute because the distgit does usermod to add libvirt/qemu groups
- run: bash /usr/local/bin/uid_gid_manage nova
- run: rm -f /etc/machine-id
- run: ln -s /usr/share/openstack-tripleo-common/healthcheck/nova-compute /openstack/healthcheck && chmod a+rx /openstack/healthcheck
tcib_packages:
common:
- ceph-common
- device-mapper-multipath
- e2fsprogs
- xorriso
- iscsi-initiator-utils
- ndctl
- nfs-utils
- nvme-cli
- openssh-server
- openstack-nova-compute
- openstack-nova-migration
- openvswitch
- parted
- python3-libguestfs
- python3-oslo-vmware
- python3-rtslib
- sysfsutils
- swtpm
- swtpm-tools
- targetcli
- xfsprogs
x86_64:
- daxio
el8:
- trousers
tcib_user: nova