QUOTA Management for your Organization:
It is the different capacities allocated to a cluster that allow it to function properly. The different capacities are the cpu, the limit and the storage.
- The cpu is the value of the processor allocated to a cluster, it takes into account 2 parameters, the limit value (maximum value that can be allocated to a cluster) and the request value (the minimum value that a cluster needs to function). It is measured in Core or Mcore
- The limit is the value of the memory allocated to a cluster. Like the cpu, it takes into account a limit value and a request value. However it is measured in M,Mi,G,Gi
- The storage, that is the capacity that a cluster can have, is also measured in M,Mi,G,Gi
CREATION SYNTAX
Create a quota by giving elements of configuration
cnoctl adm create quota [name] --cpu LimitValue,RequestValue --memory LimitValue,RequestValue --storage valueStorage
name
: The name of the quota you want to create | [REQUIRED]
cpu
: cpu parameter limit value and request, which are separated by comma. | [REQUIRED]memory
: memory parameter limit value and request, which are separated by comma. | [REQUIRED]storage
: storage value | [REQUIRED]
* it is not possible to put a request value, it will be deducted from the limit value
GET
List informations about all quota
cnoctl adm get quota [name]
name
: The name of the quota from which we want to retrieve information. To specify if you want to get information about a specific quota | [OPTIONAL]