I have just begun to play around with various cloud vendors (AWS, GCP, etc) to get a better understanding of what they have to offer.
This is what I am looking to do: I have a task that runs 24/7 that I want to containerize and deploy to the cloud. What cloud vendor and service should I use to accomplish this? I am not very educated in the cloud space and am trying to learn more by doing.
I have looked at GKE on GCP to manage the containers, but also have read about AWS Fargate. I'm not sure what to go with, or even if the two resources I looked in to are best fitting for what I am trying to accomplish.
Thanks in advance to all of those who reply. I understand that this question is not super technical and is more opinion based, but I am genuinely curious and don't really know where to begin.
Edit:
Say I have the following code I wish to run (my_task.py
):
while True:
print("Hello World")