Zeyuan Wang

Results 2 comments of Zeyuan Wang

For example, in go-client: `deployment.Spec.Template.Spec.Containers[0].Resources.Requests.Memory().MilliValue() / 1000 / 1024 / 1024` can get the specific int64 value of the memory requests and convert to MiB

But in python-client: `mem_requests = deployment.spec.template.spec.containers[0].resources.requests["memory"]` gets the str type, like 4GiB. What I want is 4096 MiB, int type. Thank you for your help!