taskotron-dev: use F30 minions (UEFI VMs)

This commit is contained in:
Kamil Páral 2019-05-22 15:52:32 +02:00
parent e4fbd6f88a
commit 9ab96e16e8
2 changed files with 74 additions and 1 deletions

View file

@ -0,0 +1,73 @@
# Commented out default values with details are displayed below. If you want
# to change the values, make sure this file is available in one of the three
# supported config locations:
# - conf/settings.py in the git checkout
# - ~/.config/testcloud/settings.py
# - /etc/testcloud/settings.py
#DOWNLOAD_PROGRESS = True
#LOG_FILE = None
## Directories for data and cached downloaded images ##
#DATA_DIR = "/var/lib/testcloud/"
#STORE_DIR = "/var/lib/testcloud/backingstores"
## Data for cloud-init ##
#PASSWORD = 'passw0rd'
#HOSTNAME = 'testcloud'
#META_DATA = """instance-id: iid-123456
#local-hostname: %s
#"""
## Read http://cloudinit.readthedocs.io/en/latest/topics/examples.html to see
## what options you can use here.
USER_DATA = """#cloud-config
users:
- default
- name: root
password: %s
chpasswd: { expire: False }
ssh-authorized-keys:
- {{ buildslave_pubkey }}
runcmd:
- [dnf, update, libtaskotron, python-resultsdb_api]
"""
#ATOMIC_USER_DATA = """#cloud-config
#password: %s
#chpasswd: { expire: False }
#ssh_pwauth: True
#runcmd:
# - [ sh, -c, 'echo -e "ROOT_SIZE=4G\nDATA_SIZE=10G" > /etc/sysconfig/docker-storage-setup']
#"""
## Extra cmdline args for the qemu invocation ##
## Customize as needed :)
#CMD_LINE_ARGS = []
# The timeout, in seconds, to wait for an instance to boot before
# failing the boot process. Setting this to 0 disables waiting and
# returns immediately after starting the boot process.
BOOT_TIMEOUT = 90
# ram size, in MiB
RAM = 6144
# Desired size, in GiB of instance disks. 0 leaves disk capacity
# identical to source image
DISK_SIZE = 40
# Number of retries when stopping of instance fails (host is busy)
#STOP_RETRIES = 3
# Waiting time between stop retries, in seconds
#STOP_RETRY_WAIT = 1
# Desired VM type: False = BIOS, True = UEFI
UEFI = True

View file

@ -161,7 +161,7 @@ force_imageurl: False
## Default distro/release/flavor/arch for the disposable images discovery
#default_disposable_distro: fedora
{% if deployment_type in ['dev'] %}
default_disposable_release: '29'
default_disposable_release: '30'
{% else %}
default_disposable_release: '28'
{% endif %}