-
Notifications
You must be signed in to change notification settings - Fork 127
/
Copy pathrun
executable file
·41 lines (32 loc) · 938 Bytes
/
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
#!/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-sub -f --wait=true
ibmcloud ce app delete -n cron-app -f
rm -f out
) > /dev/null 2>&1
}
clean
[[ "$1" == "clean" ]] && exit 0
set -ex
export REGISTRY=${REGISTRY:-icr.io/codeengine}
# Create the app
ibmcloud ce app create --name cron-app --cpu 0.125 --memory 0.25G --min-scale=1 --image ${REGISTRY}/cron
# Setup the cron Event Source, send event every minute
ibmcloud ce sub cron create -n cron-sub -d cron-app \
--data '{"mydata":"hello world"}' -s '* * * * *'
# Now wait until we get the event - shouldn't take more than a minute
while true ; do
ibmcloud ce app logs --name cron-app > out
grep "hello world" out > /dev/null 2>&1 && break
sleep 10
done
echo "Log from 'cron-app' app:"
cat out
# Clean up
clean