@flowfuse/driver-docker 1.14.0 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/release-publish.yml +1 -1
- package/CHANGELOG.md +9 -0
- package/docker.js +4 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
#### 2.0.0: Release
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
#### 1.15.0: Release
|
|
5
|
+
|
|
6
|
+
- #3174: Enable Multi-Core CPU Support for Node-RED Projects (#79) @elenaviter
|
|
7
|
+
- Update npm-publish action version to v2 (#78) @ppawlowski
|
|
8
|
+
- Update npm package scope (#77) @knolleary
|
|
9
|
+
|
|
1
10
|
#### 1.14.0: Release
|
|
2
11
|
|
|
3
12
|
- Add support for Private CA (#75) @hardillb
|
package/docker.js
CHANGED
|
@@ -204,10 +204,10 @@ module.exports = {
|
|
|
204
204
|
stack: {
|
|
205
205
|
properties: {
|
|
206
206
|
cpu: {
|
|
207
|
-
label: 'CPU Cores (
|
|
208
|
-
validate: '^([1-9][0-9]
|
|
209
|
-
invalidMessage: 'Invalid value - must be a number between 1 and 100',
|
|
210
|
-
description: '
|
|
207
|
+
label: 'CPU Cores (in 1/100th units)',
|
|
208
|
+
validate: '^([1-9][0-9]{0,2}|1000)$',
|
|
209
|
+
invalidMessage: 'Invalid value - must be a number between 1 and 1000, where 100 represents 1 CPU core',
|
|
210
|
+
description: 'Defines the CPU resources each Project should receive, in units of 1/100th of a CPU core. 100 equates to 1 CPU core'
|
|
211
211
|
},
|
|
212
212
|
memory: {
|
|
213
213
|
label: 'Memory (MB)',
|