Is there a list of allowable memory specifications...
# prefect-community
j
Is there a list of allowable memory specifications for Kubernetes Run? For ECS I only could enter certain values
m
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
What's the default memory value? @Mason Menges
m
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
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
Great, thanks!