forked from IBM/CodeEngine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun
executable file
·44 lines (35 loc) · 1.11 KB
/
run
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
#!/bin/bash
# Env Vars:
# REGISTRY: name of the image registry/namespace to get the images
# Clean up previous run
function clean() {
set +ex
echo Cleaning...
(
ibmcloud ce sub cron delete -n cron-job-sub -f --wait=true
ibmcloud ce job delete -n cron-job -f
rm -f out
) > /dev/null 2>&1
}
clean
[[ "$1" == "clean" ]] && exit 0
set -ex
export REGISTRY=${REGISTRY:-ibmcom}
# Create a Job - just it's definition. The "running" instance of it
# will be created when the event is sent to it.
ibmcloud ce job create -n cron-job --image ${REGISTRY}/cronjob
# Setup the cron Event Source, send event every minute
ibmcloud ce sub cron create -n cron-job-sub -d cron-job \
--destination-type job --data '{"mydata":"hello world"}' -s '* * * * *'
# Now wait until we get the event - shouldn't take more than a minute
while true ; do
name=$(ibmcloud ce jobrun list | grep cron-job | head -1 | sed "s/ .*//")
[[ -z "$name" ]] && sleep 1 && continue
ibmcloud ce jobrun logs --name $name > out
grep "hello world" out > /dev/null 2>&1 && break
sleep 10
done
echo "Log from 'cron-job-sub' job:"
cat out
# Clean up
clean