-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrender.yaml
More file actions
44 lines (44 loc) · 1.65 KB
/
Copy pathrender.yaml
File metadata and controls
44 lines (44 loc) · 1.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
services:
- type: web
name: n8n-agentic-ops
runtime: docker
dockerfilePath: n8n-host/Dockerfile
dockerContext: n8n-host
plan: starter
envVars:
- key: N8N_PORT
value: "5678"
- key: N8N_PROTOCOL
value: https
- key: NODE_ENV
value: production
- key: GENERIC_TIMEZONE
value: UTC
- key: N8N_ENCRYPTION_KEY
generateValue: true
- key: N8N_BASIC_AUTH_ACTIVE
value: "true"
- key: N8N_BASIC_AUTH_USER
value: admin
- key: N8N_BASIC_AUTH_PASSWORD
generateValue: true
# N8N_HOST, N8N_EDITOR_BASE_URL, and WEBHOOK_URL are intentionally
# NOT listed here anymore -- n8n-host/render-entrypoint.sh derives
# them automatically at container start from Render's own
# RENDER_EXTERNAL_HOSTNAME/RENDER_EXTERNAL_URL, which Render injects
# for every web service with no setup needed. See n8n-host/Dockerfile.
#
# Points workflow.json's CRM nodes ($env.CRM_WORKER_BASE_URL) at your
# deployed CRM Worker. Unlike N8N_HOST/etc above, this one still needs
# a manual paste: it's a Cloudflare Workers URL, a different platform
# entirely, so there's no Render-injected value to derive it from.
# Fill it in after deploying the Worker via crm-worker/README.md's
# "Deploy to Cloudflare Workers" button. Must be a real container env
# var (not n8n's in-app Settings -> Variables) since the workflow
# reads it via $env, not $vars.
- key: CRM_WORKER_BASE_URL
value: REPLACE_WITH_YOUR_CRM_WORKER_URL
disk:
name: n8n-data
mountPath: /home/node/.n8n
sizeGB: 1