|
1 | 1 | {
|
2 | 2 | "Name": "official/postgresql",
|
3 |
| - "Version": "12.15-1", |
| 3 | + "Version": "12.15-2", |
4 | 4 | "DisplayName": "PostgreSQL",
|
5 | 5 | "Description": "PostgreSQL Database.",
|
6 | 6 | "Url": "https://www.postgresql.org/",
|
|
70 | 70 | "Type": "BINARY_MEASUREMENT"
|
71 | 71 | }
|
72 | 72 | },
|
| 73 | + { |
| 74 | + "Name": "container_config/memory_limit", |
| 75 | + "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).", |
| 76 | + "Optional": true, |
| 77 | + "Validation": { |
| 78 | + "Type": "BINARY_MEASUREMENT" |
| 79 | + } |
| 80 | + }, |
| 81 | + { |
| 82 | + "Name": "container_config/memory_request", |
| 83 | + "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).", |
| 84 | + "Optional": true, |
| 85 | + "Validation": { |
| 86 | + "Type": "BINARY_MEASUREMENT" |
| 87 | + }, |
| 88 | + "Default": "50m" |
| 89 | + }, |
| 90 | + { |
| 91 | + "Name": "container_config/swap_limit", |
| 92 | + "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.", |
| 93 | + "Optional": true, |
| 94 | + "Validation": { |
| 95 | + "Type": "BINARY_MEASUREMENT" |
| 96 | + } |
| 97 | + }, |
| 98 | + { |
| 99 | + "Name": "container_config/cpu_core_limit", |
| 100 | + "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.", |
| 101 | + "Optional": true |
| 102 | + }, |
| 103 | + { |
| 104 | + "Name": "container_config/cpu_core_request", |
| 105 | + "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.", |
| 106 | + "Optional": true, |
| 107 | + "Default": "0.50" |
| 108 | + }, |
| 109 | + { |
| 110 | + "Name": "container_config/storage_limit", |
| 111 | + "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).", |
| 112 | + "Optional": true, |
| 113 | + "Validation": { |
| 114 | + "Type": "BINARY_MEASUREMENT" |
| 115 | + } |
| 116 | + }, |
| 117 | + { |
| 118 | + "Name": "container_config/storage_request", |
| 119 | + "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).", |
| 120 | + "Optional": true, |
| 121 | + "Validation": { |
| 122 | + "Type": "BINARY_MEASUREMENT" |
| 123 | + } |
| 124 | + }, |
73 | 125 | {
|
74 | 126 | "Name": "logging/root",
|
75 | 127 | "Description": "Set the root log level to one of ERROR, WARN, INFO, DEBUG.",
|
|
0 commit comments