diff --git a/roles/taskotron/taskotron-client/templates/settings.py.testcloud.j2.dev b/roles/taskotron/taskotron-client/templates/settings.py.testcloud.j2.dev new file mode 100644 index 0000000000..c55e6c3f24 --- /dev/null +++ b/roles/taskotron/taskotron-client/templates/settings.py.testcloud.j2.dev @@ -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 diff --git a/roles/taskotron/taskotron-client/templates/taskotron.yaml.j2 b/roles/taskotron/taskotron-client/templates/taskotron.yaml.j2 index 56a7f38bef..3bb0eebf5f 100644 --- a/roles/taskotron/taskotron-client/templates/taskotron.yaml.j2 +++ b/roles/taskotron/taskotron-client/templates/taskotron.yaml.j2 @@ -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 %}