https://prefect.io logo
Title
j

Jason Motley

06/28/2022, 6:05 PM
Is there a list of allowable memory specifications for Kubernetes Run? For ECS I only could enter certain values
m

Mason Menges

06/28/2022, 6:17 PM
I believe the ECS runconfig imposes stricter limits on the values you can input, the Kubernetes runconfig should be able to support anything you'd be able input in a yaml file if you were creating the job-template by hand, i.e. if there are limits to the allowable memory specifications it would be found in Kubernetes documentation but as far as I know I don't believe there is.
j

Jason Motley

06/28/2022, 6:34 PM
What's the default memory value? @Mason Menges
m

Mason Menges

06/28/2022, 6:49 PM
The Memory Limit/Request arguments are optional for the runconfig and don't pass in a specific value, I'm not 100% sure on this but I believe if you don't pass those values in it just spins up a pod using whatever space is available but you might check the Kubernetes docs for more specifics on that
k

Kevin Kho

06/28/2022, 9:45 PM
I think Mason is right and there is no default and it can just take as much space to it’s better to specify
j

Jason Motley

06/28/2022, 9:47 PM
Great, thanks!