blob: 58fc533b0a09b1f63e5b40a3f55ba1af2e40c029 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
##############################################################################
# Copyright (c) 2018 Mirantis Inc., Enea AB and others.
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
---
build:
# Common pkgs required for all builds, no matter the type, arch etc.
common:
- curl
- git
- make
- python3-pip
deploy:
# Common pkgs required for all deploys, no matter the type, arch etc.
common:
- bridge-utils
- build-essential
- cloud-guest-utils
- cpu-checker
- curl
- docker-compose
- e2fsprogs
- git
- kpartx
- libglib2.0-bin
- libvirt-bin
- mkisofs
- qemu-kvm
- rsync
- uuid-runtime
- virtinst
# python is indirectly required for PDF parsing
- python3
- python3-jinja2
- python3-yaml
- python3-jsonschema
# Optional, arch-specific requirements, matched by key name = $(uname -m)
aarch64:
# AArch64 VMs use AAVMF (guest UEFI)
- ipxe-qemu
- qemu-efi
# AArch64 CentOS cloud image is archived with xz
- xz-utils
|