Skip to content

Commit

Permalink
fix(n8n): allow null on ints (#4407)
Browse files Browse the repository at this point in the history
  • Loading branch information
stavros-k authored Nov 13, 2022
1 parent 43611df commit a51bc45
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion charts/stable/n8n/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ sources:
- https://docs.n8n.io/
- https://github.com/n8n-io/n8n
- https://hub.docker.com/r/n8nio/n8n
version: 6.0.0
version: 6.0.1
annotations:
truecharts.org/catagories: |
- media
Expand Down
8 changes: 8 additions & 0 deletions charts/stable/n8n/questions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -160,11 +160,13 @@ questions:
description: "The maximum run time (in seconds) before stopping a workflow execution. Set to -1 to disable."
schema:
type: int
"null": true
- variable: EXECUTIONS_TIMEOUT_MAX
label: "Max Execution Timeout (Leave empty for default)"
description: "The max execution time (in seconds) that can be set for a workflow individually"
schema:
type: int
"null": true
- variable: EXECUTIONS_DATA_SAVE_ON_ERROR
label: "Execution Data Save on Error"
description: "Whether n8n saves execution data on error."
Expand Down Expand Up @@ -208,6 +210,7 @@ questions:
description: "The execution age (in hours) before it is deleted"
schema:
type: int
"null": true
- variable: EXECUTIONS_DATA_PRUNE
label: "Execution Data Prune"
description: "Whether to delete data of past executions on a rolling basis"
Expand All @@ -221,6 +224,7 @@ questions:
description: "The timeout (in seconds) after execution data has been pruned"
schema:
type: int
"null": true
- variable: n8n_security
group: "App Configuration"
label: "Security"
Expand Down Expand Up @@ -334,6 +338,7 @@ questions:
description: "The maximum payload size in MB"
schema:
type: int
"null": true
- variable: N8N_METRICS
label: "Enable Metrics endpoint"
description: "Whether to enable the metrics endpoint"
Expand Down Expand Up @@ -455,11 +460,13 @@ questions:
description: "Max number of log files to keep"
schema:
type: int
"null": true
- variable: N8N_LOG_FILE_SIZE_MAX
label: "Max Log File Size (Leave empty for default)"
description: "Max size of each log file in MB"
schema:
type: int
"null": true
- variable: externalhooks
group: "App Configuration"
label: "External Hooks"
Expand Down Expand Up @@ -503,6 +510,7 @@ questions:
description: "Your SMTP server port"
schema:
type: int
"null": true
- variable: N8N_SMTP_USER
label: "SMTP User"
description: "Your SMTP username"
Expand Down

0 comments on commit a51bc45

Please sign in to comment.