Adding latest n8n config
This commit is contained in:
parent
c91c7d101f
commit
c0df553071
|
|
@ -708,3 +708,8 @@ oci://8gears.container-registry.com/library/n8n \
|
||||||
--namespace n8n --values n8n/n8n.secret.yml --version 1.0.15
|
--namespace n8n --values n8n/n8n.secret.yml --version 1.0.15
|
||||||
```
|
```
|
||||||
|
|
||||||
|
To verify installation was correcet, use the following command:
|
||||||
|
|
||||||
|
```
|
||||||
|
helm get manifest mop-n8n -n n8n | less
|
||||||
|
```
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,11 @@
|
||||||
#small deployment with nodeport for local testing or small deployments
|
#small deployment with nodeport for local testing or small deployments
|
||||||
|
image:
|
||||||
|
repository: n8nio/n8n
|
||||||
|
pullPolicy: Always
|
||||||
|
# Overrides the image tag whose default is the chart appVersion.
|
||||||
|
tag: "stable"
|
||||||
|
|
||||||
|
|
||||||
main:
|
main:
|
||||||
config:
|
config:
|
||||||
generic:
|
generic:
|
||||||
|
|
@ -6,6 +13,12 @@ main:
|
||||||
n8n:
|
n8n:
|
||||||
editor_base_url: https://n8n.moritzgraf.de
|
editor_base_url: https://n8n.moritzgraf.de
|
||||||
webhook_url: https://n8n.moritzgraf.de
|
webhook_url: https://n8n.moritzgraf.de
|
||||||
|
extra:
|
||||||
|
node_modules:
|
||||||
|
- axios
|
||||||
|
node:
|
||||||
|
function_allow_builtin: '*'
|
||||||
|
function_allow_external: '*'
|
||||||
db:
|
db:
|
||||||
type: postgresdb
|
type: postgresdb
|
||||||
postgresdb:
|
postgresdb:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue