when running `--with kubernetes` , how are the min...
# dev-metaflow
a
when running
--with kubernetes
, how are the minimum cpu and memory needs decided? I downscaled my cluster and got some pending pods πŸ™‚
βœ… 1
l
Hey mikko ! By default it’s 1 cpu and 4 gigs of ram https://github.com/Netflix/metaflow/blob/c8456aa165a566e0c3d5cf2f37cfcdef5e6a9ae5/metaflow/plugins/kubernetes/kubernetes_decorator.py#L72 You can pass cpu and memory in the cli options like this :
Copy code
β€”-with kubernetes:cpu=1,memory=2000
a
beautiful, thanks!