|
130 | 130 | "Description": "Size of cache for working directories used to edit repository content, for example using the editor or the review plugin. To disable cache, clean this value.", |
131 | 131 | "Optional": true, |
132 | 132 | "Default": "5" |
| 133 | + }, |
| 134 | + { |
| 135 | + "Name": "container_config/memory_limit", |
| 136 | + "Description":"Limits the container's memory usage. Use a positive integer value followed by one of these units [b,k,m,g] (byte, kibibyte, mebibyte, gibibyte).", |
| 137 | + "Optional": true, |
| 138 | + "Validation": { |
| 139 | + "Type": "BINARY_MEASUREMENT" |
| 140 | + } |
| 141 | + }, |
| 142 | + { |
| 143 | + "Name": "container_config/memory_request", |
| 144 | + "Description":"Requests the container's minimal memory requirement. Use a positive integer value followed by one of these units [b,k,m,g] (byte, kibibyte, mebibyte, gibibyte).", |
| 145 | + "Optional": true, |
| 146 | + "Validation": { |
| 147 | + "Type": "BINARY_MEASUREMENT" |
| 148 | + }, |
| 149 | + "Default": "700m" |
| 150 | + }, |
| 151 | + { |
| 152 | + "Name": "container_config/swap_limit", |
| 153 | + "Description":"Limits the container's swap memory usage. Use zero or a positive integer value followed by one of these units [b,k,m,g] (byte, kibibyte, mebibyte, gibibyte). 0 will disable swapping.", |
| 154 | + "Optional": true, |
| 155 | + "Validation": { |
| 156 | + "Type": "BINARY_MEASUREMENT" |
| 157 | + } |
| 158 | + }, |
| 159 | + { |
| 160 | + "Name": "container_config/cpu_core_limit", |
| 161 | + "Description":"Limits the container's CPU core usage. Use a positive floating value describing a fraction of 1 CPU core. When you define a value of '0.5', you are requesting half as much CPU time compared to if you asked for '1.0' CPU.", |
| 162 | + "Optional": true |
| 163 | + }, |
| 164 | + { |
| 165 | + "Name": "container_config/cpu_core_request", |
| 166 | + "Description":"Requests the container's minimal CPU core requirement. Use a positive floating value describing a fraction of 1 CPU core. When you define a value of '0.5', you are requesting half as much CPU time compared to if you asked for '1.0' CPU.", |
| 167 | + "Optional": true, |
| 168 | + "Default": "1.0" |
| 169 | + }, |
| 170 | + { |
| 171 | + "Name": "container_config/storage_limit", |
| 172 | + "Description":"Limits the container's ephemeral storage usage. Use a positive integer value followed by one of these units [b,k,m,g] (byte, kibibyte, mebibyte, gibibyte).", |
| 173 | + "Optional": true, |
| 174 | + "Validation": { |
| 175 | + "Type": "BINARY_MEASUREMENT" |
| 176 | + } |
| 177 | + }, |
| 178 | + { |
| 179 | + "Name": "container_config/storage_request", |
| 180 | + "Description": "Requests the container's minimal ephemeral storage requirement. Use a positive integer value followed by one of these units [b,k,m,g] (byte, kibibyte, mebibyte, gibibyte).", |
| 181 | + "Optional": true, |
| 182 | + "Validation": { |
| 183 | + "Type": "BINARY_MEASUREMENT" |
| 184 | + } |
133 | 185 | } |
134 | 186 | ], |
135 | 187 | "ExposedPorts": [ |
|
0 commit comments