summaryrefslogtreecommitdiffstats
path: root/roles/taskotron/imagefactory
diff options
context:
space:
mode:
authorJosef Skladanka <jskladan@redhat.com>2016-04-26 15:02:39 +0200
committerJosef Skladanka <jskladan@redhat.com>2016-04-26 15:02:39 +0200
commit39cb3830a0e2088c97cd1d2958e8f0ee4901f6e7 (patch)
treecc4b3430593bc3bdc45105e5d0b8f32340bed345 /roles/taskotron/imagefactory
parentaf3c7c99880abc97279ead88c370f6cee8822388 (diff)
downloadansible-39cb3830a0e2088c97cd1d2958e8f0ee4901f6e7.tar.gz
ansible-39cb3830a0e2088c97cd1d2958e8f0ee4901f6e7.tar.xz
ansible-39cb3830a0e2088c97cd1d2958e8f0ee4901f6e7.zip
Taskotron-imagefactory: build f24 and rawhide base images
Diffstat (limited to 'roles/taskotron/imagefactory')
-rw-r--r--roles/taskotron/imagefactory/tasks/main.yml18
1 files changed, 15 insertions, 3 deletions
diff --git a/roles/taskotron/imagefactory/tasks/main.yml b/roles/taskotron/imagefactory/tasks/main.yml
index 9b05bc70c..377c0358a 100644
--- a/roles/taskotron/imagefactory/tasks/main.yml
+++ b/roles/taskotron/imagefactory/tasks/main.yml
@@ -30,11 +30,23 @@
- name: Generate configuration
template: src=config_server.ini.j2 dest=/etc/taskotron_base_images/config_server.ini owner=root group=root mode=0644
-- name: Create cronjob to build new images
+- name: Create cronjob to build new F23 images
cron:
- name: "Build new taskotron_cloud images in ImageFactory"
+ name: "Build new f23 taskotron_cloud images in ImageFactory"
special_time: daily
- job: '/var/lib/fedoraqa/base_images/trigger_build/trigger_build.py build --config /etc/taskotron_base_images/config_server.ini --release 23 --arch x86_64 --flavor="taskotron_cloud" --disksize="3G" > /dev/null'
+ job: '/var/lib/fedoraqa/base_images/trigger_build/trigger_build.py build --config /etc/taskotron_base_images/config_server.ini --release 23 --arch x86_64 --flavor="taskotron_cloud" --disksize="4G" > /dev/null'
+
+- name: Create cronjob to build new F24 images
+ cron:
+ name: "Build new f24 taskotron_cloud images in ImageFactory"
+ special_time: daily
+ job: '/var/lib/fedoraqa/base_images/trigger_build/trigger_build.py build --config /etc/taskotron_base_images/config_server.ini --release 24 --arch x86_64 --flavor="taskotron_cloud" --disksize="4G" > /dev/null'
+
+- name: Create cronjob to build new rawhide images
+ cron:
+ name: "Build new rawhide taskotron_cloud images in ImageFactory"
+ special_time: daily
+ job: '/var/lib/fedoraqa/base_images/trigger_build/trigger_build.py build --config /etc/taskotron_base_images/config_server.ini --release rawhide --arch x86_64 --flavor="taskotron_cloud" --disksize="4G" > /dev/null'
- name: Create cronjob to report failed builds
cron: