Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#3174: Enable Multi-Core CPU Support for Node-RED Projects #129

Merged
merged 1 commit into from
Dec 7, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions kubernetes.js
Original file line number Diff line number Diff line change
Expand Up @@ -695,10 +695,10 @@ module.exports = {
stack: {
properties: {
cpu: {
label: 'CPU Cores (%)',
validate: '^([1-9][0-9]?|100)$',
invalidMessage: 'Invalid value - must be a number between 1 and 100',
description: 'How much of a single CPU core each Project should receive'
label: 'CPU Cores (in 1/100th units)',
validate: '^([1-9][0-9]{0,2}|1000)$',
invalidMessage: 'Invalid value - must be a number between 1 and 1000, where 100 represents 1 CPU core',
description: 'Defines the CPU resources each Project should receive, in units of 1/100th of a CPU core. 100 equates to 1 CPU core'
},
memory: {
label: 'Memory (MB)',
Expand Down