After updating to kfp SDK 2.10, we saw pods running with no resources on kfp server 2.3.
It seems that in the generated pipeline spec, the keys for CPU / RAM requests and limits have changed as well (probably in https://github.com/kubeflow/pipelines/pull/11097).
Expected result
The pod should include the resources definition for CPU/Memory, including requests and limits.
Materials and Reference
When compiling the pipeline with 2.10 it renders the following:
resources:
resourceCpuLimit: 500m
resourceCpuRequest: 100m
resourceMemoryLimit: 500Mi
resourceMemoryRequest: 100Mi
With older version such as 2.9, it renders the following:
Follow-up from #11374
Environment
Steps to reproduce
According to @vanHavel user:
Expected result
The pod should include the resources definition for CPU/Memory, including requests and limits.
Materials and Reference
When compiling the pipeline with 2.10 it renders the following:
With older version such as 2.9, it renders the following:
Impacted by this bug? Give it a 👍.