3 Commits

Author SHA1 Message Date
61f92c0075 Add N8N_LOG_LEVEL and config.debug value
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
2022-11-15 22:22:59 +03:00
a667ff2f96 Drone: helm repo add bitnami
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
2022-11-15 22:19:37 +03:00
862cb62d2f helm update dependency
Some checks failed
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is failing
2022-11-15 22:12:07 +03:00
4 changed files with 11 additions and 0 deletions

View File

@ -32,6 +32,7 @@ steps:
image: cr.grachevko.ru/docker.io/alpine/helm:latest image: cr.grachevko.ru/docker.io/alpine/helm:latest
pull: always pull: always
commands: commands:
- helm repo add bitnami https://charts.bitnami.com/bitnami
- helm dependency build - helm dependency build
- helm plugin install https://github.com/chartmuseum/helm-push - helm plugin install https://github.com/chartmuseum/helm-push
- helm repo add $HELM_REPO_NAME $HELM_REPO_REGISTRY/$HELM_REPO_NAME --username $HELM_REPO_USERNAME --password $HELM_REPO_PASSWORD - helm repo add $HELM_REPO_NAME $HELM_REPO_REGISTRY/$HELM_REPO_NAME --username $HELM_REPO_USERNAME --password $HELM_REPO_PASSWORD

6
Chart.lock Normal file
View File

@ -0,0 +1,6 @@
dependencies:
- name: redis
repository: https://charts.bitnami.com/bitnami
version: 16.4.5
digest: sha256:bed8b8c341db9fcbd4a81de0b55a47e306ba4217e8cfa300a4ba97befb13e51c
generated: "2022-11-15T22:11:41.384512283+03:00"

View File

@ -17,4 +17,7 @@ data:
NODE_FUNCTION_ALLOW_BUILTIN: {{ .Values.config.node.function.allow.builtin | quote }} NODE_FUNCTION_ALLOW_BUILTIN: {{ .Values.config.node.function.allow.builtin | quote }}
NODE_FUNCTION_ALLOW_EXTERNAL: {{ .Values.config.node.function.allow.external | quote }} NODE_FUNCTION_ALLOW_EXTERNAL: {{ .Values.config.node.function.allow.external | quote }}
QUEUE_BULL_REDIS_HOST: {{ include "n8n.fullname" . }}-redis QUEUE_BULL_REDIS_HOST: {{ include "n8n.fullname" . }}-redis
{{- if .Values.config.debug }}
N8N_LOG_LEVEL: debug
{{- end }}
{{- end }} {{- end }}

View File

@ -1,4 +1,5 @@
config: config:
debug: "false"
db_type: postgresdb db_type: postgresdb
postgres: postgres:
database: n8n database: n8n