@flowfuse/driver-kubernetes 1.14.1-c12d5da-202311291435.0 → 1.15.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.
@@ -13,6 +13,6 @@ jobs:
13
13
  with:
14
14
  node-version: 16
15
15
  - run: npm ci
16
- - uses: JS-DevTools/npm-publish@v1
16
+ - uses: JS-DevTools/npm-publish@v2
17
17
  with:
18
18
  token: ${{ secrets.NPM_PUBLISH_TOKEN }}
package/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ #### 1.15.0: Release
2
+
3
+ - #3174: Enable Multi-Core CPU Support for Node-RED Projects (#129) @elenaviter
4
+ - Update npm-publish action version to v2 (#127) @ppawlowski
5
+ - Update to flowfuse npm scope (#126) @knolleary
6
+
1
7
  #### 1.14.0: Release
2
8
 
3
9
 
package/kubernetes.js CHANGED
@@ -695,10 +695,10 @@ module.exports = {
695
695
  stack: {
696
696
  properties: {
697
697
  cpu: {
698
- label: 'CPU Cores (%)',
699
- validate: '^([1-9][0-9]?|100)$',
700
- invalidMessage: 'Invalid value - must be a number between 1 and 100',
701
- description: 'How much of a single CPU core each Project should receive'
698
+ label: 'CPU Cores (in 1/100th units)',
699
+ validate: '^([1-9][0-9]{0,2}|1000)$',
700
+ invalidMessage: 'Invalid value - must be a number between 1 and 1000, where 100 represents 1 CPU core',
701
+ description: 'Defines the CPU resources each Project should receive, in units of 1/100th of a CPU core. 100 equates to 1 CPU core'
702
702
  },
703
703
  memory: {
704
704
  label: 'Memory (MB)',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flowfuse/driver-kubernetes",
3
- "version": "1.14.1-c12d5da-202311291435.0",
3
+ "version": "1.15.0",
4
4
  "description": "Kubernetes driver for FlowFuse",
5
5
  "main": "kubernetes.js",
6
6
  "scripts": {