|
1 | 1 | {
|
2 | 2 | "Name": "official/nexus",
|
3 |
| - "Version": "3.52.0-1", |
| 3 | + "Version": "3.52.0-2", |
4 | 4 | "DisplayName": "Sonatype Nexus",
|
5 | 5 | "Description": "The Nexus Repository is like the local warehouse where all of the parts and finished goods used in your software supply chain are stored and distributed.",
|
6 | 6 | "Url": "http://www.sonatype.org/nexus",
|
|
205 | 205 | "Description": "Cron string (in Quartz syntax) that sets the task's schedule. The default \"0 0 3 * * ?\" value will run the task daily at 3:00 AM.",
|
206 | 206 | "Optional": true,
|
207 | 207 | "Default": "0 0 3 * * ?"
|
| 208 | + }, |
| 209 | + { |
| 210 | + "Name": "container_config/memory_limit", |
| 211 | + "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).", |
| 212 | + "Optional": true, |
| 213 | + "Validation": { |
| 214 | + "Type": "BINARY_MEASUREMENT" |
| 215 | + } |
| 216 | + }, |
| 217 | + { |
| 218 | + "Name": "container_config/memory_request", |
| 219 | + "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).", |
| 220 | + "Optional": true, |
| 221 | + "Validation": { |
| 222 | + "Type": "BINARY_MEASUREMENT" |
| 223 | + }, |
| 224 | + "Default": "2500m" |
| 225 | + }, |
| 226 | + { |
| 227 | + "Name": "container_config/swap_limit", |
| 228 | + "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.", |
| 229 | + "Optional": true, |
| 230 | + "Validation": { |
| 231 | + "Type": "BINARY_MEASUREMENT" |
| 232 | + } |
| 233 | + }, |
| 234 | + { |
| 235 | + "Name": "container_config/cpu_core_limit", |
| 236 | + "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.", |
| 237 | + "Optional": true |
| 238 | + }, |
| 239 | + { |
| 240 | + "Name": "container_config/cpu_core_request", |
| 241 | + "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.", |
| 242 | + "Optional": true, |
| 243 | + "Default": "1.0" |
| 244 | + }, |
| 245 | + { |
| 246 | + "Name": "container_config/storage_limit", |
| 247 | + "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).", |
| 248 | + "Optional": true, |
| 249 | + "Validation": { |
| 250 | + "Type": "BINARY_MEASUREMENT" |
| 251 | + } |
| 252 | + }, |
| 253 | + { |
| 254 | + "Name": "container_config/storage_request", |
| 255 | + "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).", |
| 256 | + "Optional": true, |
| 257 | + "Validation": { |
| 258 | + "Type": "BINARY_MEASUREMENT" |
| 259 | + } |
208 | 260 | }
|
209 | 261 | ],
|
210 | 262 | "HealthChecks": [
|
|
0 commit comments