Project

General

Profile

Sepia » History » Version 29

Cron Tab, 06/23/2015 01:00 PM

1 1 Cron Tab
h3. Crontab<pre>MAILTO="yweinste@redhat.com"
2 1 Cron Tab
# Edit this file to introduce tasks to be run by cron.
3 1 Cron Tab
# 
4 1 Cron Tab
# Each task to run has to be defined through a single line
5 1 Cron Tab
# indicating with different fields when the task will be run
6 1 Cron Tab
# and what command to run for the task
7 1 Cron Tab
# 
8 1 Cron Tab
# To define the time you can provide concrete values for
9 1 Cron Tab
# minute (m), hour (h), day of month (dom), month (mon),
10 1 Cron Tab
# and day of week (dow) or use '*' in these fields (for 'any').# 
11 1 Cron Tab
# Notice that tasks will be started based on the cron's system
12 1 Cron Tab
# daemon's notion of time and timezones.
13 1 Cron Tab
# 
14 1 Cron Tab
# Output of the crontab jobs (including errors) is sent through
15 1 Cron Tab
# email to the user the crontab file belongs to (unless redirected).
16 1 Cron Tab
# 
17 1 Cron Tab
# For example, you can run a backup of all your user accounts
18 1 Cron Tab
# at 5 a.m every week with:
19 1 Cron Tab
# 0 5 * * 1 tar -zcf /var/backups/home.tgz /home/
20 1 Cron Tab
# 
21 1 Cron Tab
# For more information see the manual pages of crontab(5) and cron(8)
22 1 Cron Tab
# 
23 1 Cron Tab
# m h  dom mon dow   command
24 1 Cron Tab
PATH=/home/teuthology/src/teuthology_master/virtualenv/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
25 1 Cron Tab
26 10 Cron Tab
#Publish this crontab to the Tracker page http://tracker.ceph.com/projects/ceph-releases/wiki/Crontab
27 2 Cron Tab
00 6 * * *  crontab=$(crontab -l | perl -p -e 's/&lt;/&lt;/g; s/&gt;/&gt;/g; s/&/&amp;/g') ; header=$(echo h3. Crontab ; echo) ; curl --verbose -X PUT --header 'Content-type: application/xml' --data-binary '&lt;?xml version="1.0"?&gt;&lt;wiki_page&gt;&lt;text&gt;'"$header"'&lt;pre&gt;'"$crontab"'&lt;/pre&gt;&lt;/text&gt;&lt;/wiki_page&gt;' http://tracker.ceph.com/projects/ceph-releases/wiki/sepia.xml?key=$(cat /etc/redmine-key)
28 1 Cron Tab
29 19 Cron Tab
# Ensure teuthology is up-to-date
30 25 Cron Tab
55 13 * * *   cd /home/teuthology/src/teuthology_master && git pull
31 19 Cron Tab
32 10 Cron Tab
#Powercycle tests - lets try it manually and get a green before we add it to the nightlies
33 10 Cron Tab
#00 20 * * 2,4 teuthology-suite -v -c giant -k testing -m plana,burnupi,mira -s powercycle
34 1 Cron Tab
35 27 Cron Tab
#********** master branch
36 27 Cron Tab
00 5 * * *   teuthology-suite -v -c master -m plana,burnupi,mira -s smoke -k distro -p 70
37 27 Cron Tab
10 5 */3 * * teuthology-suite -v -c master -m plana,burnupi,mira -k distro -s big
38 27 Cron Tab
39 27 Cron Tab
00 23 * * 1,5 teuthology-suite -v -c master -m plana,burnupi,mira -s rbd
40 27 Cron Tab
02 23 * * 2,6 teuthology-suite -v -c master -m plana,burnupi,mira -s rgw
41 27 Cron Tab
04 23 * * 1,5 teuthology-suite -v -c master -m plana,burnupi,mira -s fs
42 27 Cron Tab
06 23 * * 2,6 teuthology-suite -v -c master -m plana,burnupi,mira -k testing -s krbd
43 27 Cron Tab
08 23 * * 1,5 teuthology-suite -v -c master -m plana,burnupi,mira -k testing -s kcephfs
44 27 Cron Tab
10 23 * * 1,5 teuthology-suite -v -c master -m plana,burnupi,mira -k testing -s knfs
45 27 Cron Tab
12 23 * * 2     teuthology-suite -v -c master -m plana,burnupi,mira -s hadoop
46 27 Cron Tab
14 23 * * 2     teuthology-suite -v -c master -m plana,burnupi,mira -s samba
47 27 Cron Tab
16 23 * * 2     teuthology-suite -v -c master -m plana,burnupi,mira -s rest
48 29 Cron Tab
18 23 * * 6     teuthology-suite -v -c master -m plana,burnupi,mira -k testing -s multimds
49 1 Cron Tab
#*********
50 1 Cron Tab
51 1 Cron Tab
##########################
52 1 Cron Tab
### rados suite divided into 14 parts 1 part every day of the 2 weeks, the bc part does 0-6 on even weeks and 7-13 on odd
53 1 Cron Tab
### % is escaped because it is a special character to chron
54 1 Cron Tab
00 21 * * 1 /home/teuthology/bin/schedule_rados.sh 0 next "plana,burnupi,mira"
55 1 Cron Tab
00 21 * * 2 /home/teuthology/bin/schedule_rados.sh 1 next "plana,burnupi,mira"
56 1 Cron Tab
00 21 * * 3 /home/teuthology/bin/schedule_rados.sh 2 next "plana,burnupi,mira"
57 1 Cron Tab
00 21 * * 4 /home/teuthology/bin/schedule_rados.sh 3 next "plana,burnupi,mira"
58 1 Cron Tab
00 21 * * 5 /home/teuthology/bin/schedule_rados.sh 4 next "plana,burnupi,mira"
59 26 Cron Tab
00 21 * * 6 /home/teuthology/bin/schedule_rados.sh 5 next "plana,burnupi,mira"
60 10 Cron Tab
00 21 * * 7 /home/teuthology/bin/schedule_rados.sh 6 next "plana,burnupi,mira"
61 1 Cron Tab
##########################
62 1 Cron Tab
63 27 Cron Tab
00 23 * * 2,6 teuthology-suite -v -c next -m plana,burnupi,mira -k distro -s rbd
64 27 Cron Tab
02 23 * * 1,5 teuthology-suite -v -c next -m plana,burnupi,mira -k distro -s rgw
65 27 Cron Tab
04 23 * * 2,6 teuthology-suite -v -c next -m plana,burnupi,mira  -s fs
66 27 Cron Tab
06 23 * * 1,5 teuthology-suite -v -c next -m plana,burnupi,mira -k testing -s krbd
67 27 Cron Tab
08 23 * * 1,5 teuthology-suite -v -c next -m plana,burnupi,mira -k testing -s kcephfs
68 27 Cron Tab
10 23 * * 1,5 teuthology-suite -v -c next -m plana,burnupi,mira -k testing -s knfs
69 27 Cron Tab
12 23 * * 7   teuthology-suite -v -c next -m plana,burnupi,mira  -s hadoop
70 27 Cron Tab
14 23 * * 7   teuthology-suite -v -c next -m plana,burnupi,mira  -s samba
71 27 Cron Tab
16 23 * * 7   teuthology-suite -v -c next -m plana,burnupi,mira  -s rest
72 29 Cron Tab
18 23 * * 7   teuthology-suite -v -c next -m plana,burnupi,mira  -k testing -s multimds
73 27 Cron Tab
20 23 * * 2,7 teuthology-suite -v -c next -m plana,burnupi,mira -k distro -s upgrade/client-upgrade
74 17 Cron Tab
75 10 Cron Tab
76 15 Cron Tab
## removed for now YuriW - 10 1 * * 1,3,5 teuthology-suite -v -c firefly -m vps -k distro -s ceph-deploy ~/vps.yaml
77 1 Cron Tab
## berametal part of ceph-deploy/hammer/next scheduled in typica lab
78 15 Cron Tab
10 1 * * 7   teuthology-suite -v -c hammer -m vps -k distro -s ceph-deploy ~/vps.yaml
79 9 Cron Tab
10 2 * * 7   teuthology-suite -v -c next -m vps -k distro -s ceph-deploy ~/vps.yaml
80 10 Cron Tab
81 11 Cron Tab
## Upgrade tests for next - running on bare metal 
82 27 Cron Tab
10 17 * * 2,7 teuthology-suite -v -c next -k distro -m plana,burnupi,mira -s upgrade/dumpling-firefly-x --filter ubuntu_
83 27 Cron Tab
13 17 * * 2,7 teuthology-suite -v -c next -k distro -m plana,burnupi,mira -s upgrade/firefly-x --filter ubuntu_
84 27 Cron Tab
05 17 * * 2,7 teuthology-suite -v -c next -k distro -m plana,burnupi,mira -s upgrade/giant-x --filter ubuntu_
85 28 Cron Tab
02 17 * * 2,7 teuthology-suite -v -c next -k distro -m plana,burnupi,mira -s upgrade/hammer-x --filter ubuntu_
86 10 Cron Tab
87 18 Cron Tab
#********** all below on VPS *****************
88 13 Cron Tab
00 17 * * 2,5 teuthology-suite -v -c firefly -k distro -m vps -s upgrade/firefly --timeout 56000  ~/vps.yaml
89 10 Cron Tab
90 10 Cron Tab
## upgrade dumpling to firefly tests  
91 11 Cron Tab
13 19 * * 7 teuthology-suite -v -c firefly -k distro -m vps -s upgrade/dumpling-x ~/vps.yaml
92 10 Cron Tab
93 10 Cron Tab
# Upgrade tests for giant - running on vps to cover multiple distros
94 11 Cron Tab
15 18 * * 3,6 teuthology-suite -v -c giant -k distro -m vps -s upgrade/dumpling-firefly-x ~/vps.yaml
95 11 Cron Tab
18 18 * * 3,6 teuthology-suite -v -c giant -k distro -m vps -s upgrade/firefly-x ~/vps.yaml
96 10 Cron Tab
97 10 Cron Tab
98 10 Cron Tab
# Upgrade tests for hammer - running on vps to cover multiple distros
99 10 Cron Tab
#removed the line below b/c the suite 'upgrade/dumpling-firefly-x' on vps runs out of memory on hammer, YuriW 3/29/15
100 10 Cron Tab
#15 17 * * 1,3 teuthology-suite -v -c hammer -k distro -m vps -s upgrade/dumpling-firefly-x --suite-branch hammer ~/vps.yaml 
101 16 Cron Tab
18 17 * * 1,5 teuthology-suite -v -c hammer -k distro -m vps -s upgrade/firefly-x ~/vps.yaml
102 16 Cron Tab
05 17 * * 1,5 teuthology-suite -v -c hammer -k distro -m vps -s upgrade/giant-x ~/vps.yaml
103 16 Cron Tab
05 16 * * 1,5 teuthology-suite -v -c hammer -k distro -m vps -s upgrade/hammer ~/vps.yaml
104 10 Cron Tab
105 1 Cron Tab
# Upgrade tests for next - running on vps to cover multiple distros
106 10 Cron Tab
#removed the line below b/c the suite 'upgrade/dumpling-firefly-x' on vps runs out of memory on next, YuriW 3/29/15
107 10 Cron Tab
#15 17 * * 0,2,4,6 teuthology-suite -v -c next -k distro -m vps -s upgrade/dumpling-firefly-x --suite-branch hammer ~/vps.yaml
108 1 Cron Tab
18 17 * * 0,2,4 teuthology-suite -v -c next -k distro -m vps -s upgrade/firefly-x ~/vps.yaml
109 28 Cron Tab
05 17 * * 0,2,4 teuthology-suite -v -c next -k distro -m vps -s upgrade/giant-x ~/vps.yaml
110 28 Cron Tab
10 17 * * 0,2,4 teuthology-suite -v -c next -k distro -m vps -s upgrade/hammer-x ~/vps.yaml</pre>