-1

I am interested to know if I want to deploy my Kubernetes cluster on a cloud service like AWS, do they charge upon the storage my application uses or the processing power it uses or both?

Is there any simple formula to get an idea about how do they charge?

For example which one is better, using more storage but less processing power or vice versa?

Tim
  • 31,888
  • 7
  • 52
  • 78
best_of_man
  • 367
  • 1
  • 3
  • 12
  • 1
    What about going to the clouds and reading their payment basics? It is not like i.e. Microsoft does not have even calculators for every service on their website. AWS must have something similar. – TomTom Jan 29 '23 at 18:29

1 Answers1

1

AWS charges you for CPU / processing, memory, storage, and bandwidth. It depends on the service though. You can use Elastic Kubernetes service, EC2 and install K8S, run ECS, etc. You can use "serverless" fargate containers where you don't manage the instance, or EC2 instances.

To estimate your costs try the AWS price calculator.

Tim
  • 31,888
  • 7
  • 52
  • 78