Skip to content

Commit

Permalink
added missing ingress urls (8gears#60)
Browse files Browse the repository at this point in the history
Co-authored-by: Harald Fielker <[email protected]>
  • Loading branch information
egandro and egandro committed Dec 28, 2023
1 parent bd8ae84 commit 2bcbf56
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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: "[]"
Expand Down
14 changes: 14 additions & 0 deletions templates/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
1 change: 1 addition & 0 deletions values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: "[]"
Expand Down

0 comments on commit 2bcbf56

Please sign in to comment.