Closed
Description
ResourceLimits class says it expect keys of type ResourceQuantity: https://github.com/kubernetes-incubator/client-python/blob/master//kubernetes/client/models/v1_resource_requirements.py#L54.
ResourceQuantity is an empty class: https://github.com/kubernetes-incubator/client-python/blob/master//kubernetes/client/models/resource_quantity.py#L25 .
ResourceLimits in the end accepts dict of string:string, e.g.
resources=V1ResourceRequirements(
limits={"memory": "9Gi"}
)