This commit is contained in:
2024-05-31 14:05:21 +03:00
parent 84b7a80e1b
commit db1760cb72
815 changed files with 58194 additions and 11049 deletions

View File

@@ -20,23 +20,23 @@ limitations under the License.
package constants
// LimitMaxVinsPerResgroup set maximum number of VINs instances per Resource Group
const LimitMaxVinsPerResgroup = 4
// LIMIT_MAX_VINS_PER_RESGROUP set maximum number of VINs instances per Resource Group
const LIMIT_MAX_VINS_PER_RESGROUP = 4
// MaxSshKeysPerCompute sets maximum number of user:ssh_key pairs to authorize when creating new compute
const MaxSshKeysPerCompute = 12
// MAX_SSHKEYS_PER_COMPUTE sets maximum number of user:ssh_key pairs to authorize when creating new compute
const MAX_SSHKEYS_PER_COMPUTE = 12
// MaxExtraDisksPerCompute sets maximum number of extra disks that can be added when creating new compute
const MaxExtraDisksPerCompute = 12
// MAX_EXTRA_DISKS_PER_COMPUTE sets maximum number of extra disks that can be added when creating new compute
const MAX_EXTRA_DISKS_PER_COMPUTE = 12
// MaxNetworksPerCompute sets maximum number of vNICs per compute
const MaxNetworksPerCompute = 8
// MAX_NETWORKS_PER_COMPUTE sets maximum number of vNICs per compute
const MAX_NETWORKS_PER_COMPUTE = 8
// MaxCpusPerCompute sets maximum number of vCPUs per compute
const MaxCpusPerCompute = 128
// MAX_CPUS_PER_COMPUTE sets maximum number of vCPUs per compute
const MAX_CPUS_PER_COMPUTE = 128
// MinRamPerCompute sets minimum amount of RAM per compute in MB
const MinRamPerCompute = 128
// MIN_RAM_PER_COMPUTE sets minimum amount of RAM per compute in MB
const MIN_RAM_PER_COMPUTE = 128
// RAMDivisibility sets divisibility of RAM value
const RAMDivisibility = 128
// RAM_DIVISIBILITY sets divisibility of RAM value
const RAM_DIVISIBILITY = 128