bpb101
bpb101

Reputation: 1071

Schedule simple python script to run each day on IBM Bluemix

I have a simple python script. I want to get it to run each day at 12pm. However i can't seem to find a way to do this on the workload scheduler in IBM Bluemix. If somebody could guide me through the process, that would be great.

I cant seem to find where to upload or refer to the script.

I already have a flask app successfully working on bluemix with no issue.

Thanks.

Upvotes: 2

Views: 811

Answers (1)

data_henrik
data_henrik

Reputation: 17156

I would recommend taking a look at OpenWhisk on Bluemix and the alarm package. It allows, similar to cron, to fire periodic events. OpenWhisk supports Python scripts. It is simpler than using Workload scheduler.

Upvotes: 3

Related Questions