diff --git a/README.md b/README.md index 10367ee..5f6d586 100644 --- a/README.md +++ b/README.md @@ -102,6 +102,7 @@ endpoints: rest: # Path for rest endpoint default: rest webhook: # Path for webhook endpoint default: webhook webhookTest: # Path for test-webhook endpoint default: webhook-test + webhookWaiting: # Path for test-webhook endpoint default: webhook-waiting externalHookFiles: # Files containing external hooks. Multiple files can be separated by colon - default: '' nodes: exclude: # Nodes not to load - default: "[]" diff --git a/templates/ingress.yaml b/templates/ingress.yaml index 883b1ca..b149dcd 100644 --- a/templates/ingress.yaml +++ b/templates/ingress.yaml @@ -60,6 +60,20 @@ spec: name: {{ $fullName }}-webhooks port: number: {{ $svcPort }} + - path: {{ . }}webhook-test/ + pathType: Prefix + backend: + service: + name: {{ $fullName }}-webhooks + port: + number: {{ $svcPort }} + - path: {{ . }}webhook-waiting/ + pathType: Prefix + backend: + service: + name: {{ $fullName }}-webhooks + port: + number: {{ $svcPort }} {{- end }} {{- end }} {{- end }} diff --git a/values.yaml b/values.yaml index 75a985b..c5d6a73 100644 --- a/values.yaml +++ b/values.yaml @@ -92,6 +92,7 @@ secret: # Dict with all n8n json config options, unlike config the values here w # rest: # Path for rest endpoint default: rest # webhook: # Path for webhook endpoint default: webhook # webhookTest: # Path for test-webhook endpoint default: webhook-test +# webhookWaiting: # Path for waiting-webhook endpoint default: webhook-waiting #externalHookFiles: # Files containing external hooks. Multiple files can be separated by colon - default: '' #nodes: # exclude: # Nodes not to load - default: "[]"