I have a queue of tasks and I would like to start a number of droplets (via API) that will process these tasks. To achieve that, after droplet starts, it needs to download an executor, run the job for a day and then kill itself. What is the best way to achieve that?
I found documentation about cloud-init script with userdata and boot script, but I’m not sure they are the most suitable for the job running. Is there any other approach?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Join our DigitalOcean community of over a million developers for free! Get help and share knowledge in Q&A, subscribe to topics of interest, and get courses and tools that will help you grow as a developer and scale your project or business.
Hello, @tkdev
You can create a simple bash script to connect to the droplets once they’re created via the API script and execute your tasks and then shut down the droplets once the job is completed.
You can also combine the tasks in one script, first create the droplet and wait for a bash prompt to access the droplet and execute your jobs.
You can check the DigitalOcean API Docs here:
https://docs.digitalocean.com/reference/api/example-usage/
Hope that this helps! Regards, Alex