I believe above configuration is right but I get an error in powershell (The 'MemoryInGB' limit value must be greater than or equal to the request value.) and if I give greater value in limits then I get error (The 'MemoryInGB' limit '1.5' in container 'xxx' is greater than the total request '1.1' of container group 'zzz'.) Let me know if the configuration is wrong. Thank you.
Asked
Active
Viewed 313 times
0
-
It looks like you're requesting more memory than the limit allows. Have you tried reversing them, e.g. requesting 1.1 GiB and setting the limit to 1.5 GiB? – ck1 Nov 23 '19 at 14:10
-
I did even that.. It is giving another error which I posed in question. – Bhanu Reddy Nov 23 '19 at 14:12
1 Answers
1
As far as I know, currently it only supports the requests and the limits are set with the same value.
- For a container, the limit can't be less than what this same container asked for.
- The limit can't be more than the total resources requested by all containers in the container group.
So I think to set the limits
is tot very useful. Just set the requests
block as the tutorial shows.

Charles Xu
- 29,862
- 2
- 22
- 39